aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/error44.C
blob: 2ebbe710c7c443a9ad9f7bd9fac23aa697265333 (plain)
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 '&'" }
}