aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/arrow2.C
blob: 8ec9e01d0de097229fb87b17927c30d1b040bdca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/56639

struct A {
  int i;
  static A* f();
};

struct B {
  void g() {
    int (A::f()->i);
  }
};