12 lines
89 B
C++
12 lines
89 B
C++
template<typename T>
|
|
struct X{
|
|
void foo(){};
|
|
};
|
|
|
|
template<>
|
|
void X<int>::foo(){
|
|
|
|
}
|
|
|
|
|