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

6 lines
57 B
V

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