Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / gcc / testsuite / g++.dg / cpp0x / parse2.C
1 // PR c++/54526
2 // { dg-do compile { target c++11 } }
3
4 template <class T>
5 struct X { };
6
7 struct A { };
8
9 int main()
10 {
11   X<::A> x;
12 }
13
14 int a;
15 bool b = 0<::a;