10 lines
139 B
C
10 lines
139 B
C
|
namespace N {
|
||
|
template <typename> struct A {
|
||
|
int n;
|
||
|
A() : n() {}
|
||
|
};
|
||
|
|
||
|
// Create declaration of A<int>.
|
||
|
typedef A<int> AI;
|
||
|
}
|