1// Member operator "." can't be applied to declared but not defined struct type
2
3struct Foo;
4
5int bar(Foo & foo) { return foo.x; }
6