v/vlib/v/checker/tests/var_eval_not_used_scope.vv

10 lines
42 B
V

const (
c = 1
)
fn main() {
{
c
}
}