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

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

struct A {
  template <typename A>
  struct G : public F 
  {
    static const A i = 0;
  };
};

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