v/vlib/v/checker/tests/var_used_before_declaration.vv

4 lines
47 B
V

fn main() {
println(x)
x := 'hello v'
}