aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/v/checker/tests/struct_unknown_field.vv
blob: 018bcefc873d8ec0dc2267c23a85417b6acc19f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
struct Test {
	foo bool
}

fn main() {
	t := Test{
		foo: true
		bar: false
	}
	_ = t
}