Paste
Pasted as C++ by bunkar ( 16 years ago )
struct X {};
struct A {
template<class T>
struct B;
};
template<>
struct A::B<X> {};
int main() {
typedef A::B<X> b_t;
b_t b;
return 0;
}
Revise this Paste
struct X {};
struct A {
template<class T>
struct B;
};
template<>
struct A::B<X> {};
int main() {
typedef A::B<X> b_t;
b_t b;
return 0;
}