1 // Contributed by Gabriel Dos Reis <gdr@codesourcery.com>
2 // Origin: Jens.Maurer@gmx.net
3 // { dg-do compile }
4 
5 // Fixed: PR 3381
6 
7 namespace N
8 {
9   template<class T>
10   class A { };
11 }
12 
13 template class ::N::A<int>;
14 
15 
16 
17