1 2 3 4 5 6 7 8 9 10 11
// PR c++/31423 // { dg-options "-fms-extensions" } struct C { int f() { return 1; } int g() { return 2; } }; int f(C& c) { return c.g == &c.f; // { dg-error "forget the '&'" } }