OSDN Git Service

XFAIL
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / explicit-instantiation.C
1 // Contributed by Gabriel Dos Reis <gdr@codesourcery.com>
2 // Origin: Jens.Maurer@gmx.net
3 // { dg-do compile }
4
5 namespace N
6 {
7   template<class T>
8   class A { };
9 }
10
11 template class ::N::A<int>;     // { dg-bogus ".*" "" { xfail *-*-* } }
12
13
14