Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / gcc / testsuite / g++.dg / template / arrow2.C
1 // PR c++/56639
2
3 struct A {
4   int i;
5   static A* f();
6 };
7
8 struct B {
9   void g() {
10     int (A::f()->i);
11   }
12 };