OSDN Git Service

2010-03-17 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / lookup / hidden-class13.C
1 // Contributed by Dodji Seketeli <dodji@redhat.com>
2 // Origin PR c++/36019
3 // { dg-do compile }
4
5 struct F {
6   static const int x = 0;
7 };
8
9 struct B {
10   template <typename B>
11   struct C
12   {
13     static int f ()
14     {
15       return B::x;
16     }
17   };
18 };
19
20 int
21 main ()
22 {
23   int j = B::C<F>::f ();
24   return 0;
25 }