v/vlib/v/checker/tests/mod_op_wrong_left_type_err_c.v

6 lines
42 B
V

struct A{}
fn main() {
a := A{}
a % 1
}