aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/hidden-class12.C
blob: 4a3f2d7618be152e1ecc501b2ad1a1f105522872 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Contributed by Dodji Seketeli <dodji@redhat.com>
// Origin PR c++/36019
// { dg-do compile }

struct F {
  static const int x = 0;
};

struct A {
  template <typename A>
  static int f ()
  {
    return A::x;
  }
};


int
main ()
{
  int i = A::f<F> ();
  return i;
}