v/vlib/v/checker/tests/negative_assign_to_unsigned.vv

5 lines
62 B
V

fn main() {
mut u := u32(10)
u = -10
eprintln(u)
}