1 // PR c++/54526 2 // { dg-do compile { target c++11 } } 3 4 template <class T> 5 struct X { }; 6 7 struct A { }; 8 main()9 int main() 10 { 11 X<::A> x; 12 } 13 14 int a; 15 bool b = 0<::a; 16