1const Foo = struct {
2 comptime b: i32,
3};
4export fn entry() void {
5 var f: Foo = undefined;
6 _ = &f;
7}
8
9// error
10//
11// :2:5: error: comptime field without default initialization value