brintos

brintos / llvm-project-archived public Read only

0
0
Text · 139 B · 9212a3f Raw
10 lines · c
1namespace N {2  template <typename> struct A {3    int n;4    A() : n() {}5  };6 7  // Create declaration of A<int>.8  typedef A<int> AI;9}10