libatomic: Improve cpuid usage in __libat_feat1_init
[official-gcc.git] / gcc / testsuite / g++.dg / parse / pr81247-c.C
blob33183c5294b2a14b7e651dae7b409a422df4ecf5
1 // PR c++/81247 rejected well-formed
3 namespace N {
4   template < typename T > class A
5   {
6     // injects a hidden class N::N at instantiation time
7     template < T > friend class N;
8   };
11 void f ()
13   N::A < int > a1;