fn func(arg struct { foo string = 'bar' }) { println(arg.foo) } fn main() { func(struct { foo: 'foo' }) }