01a4bf5e5b
(cherry picked from commit c9b5a07d5cd83100862e067ccff189e10c666f9b)
22 lines
236 B
C++
22 lines
236 B
C++
int id(int x) {
|
|
return x;
|
|
}
|
|
|
|
class C {
|
|
//irrelevant
|
|
};
|
|
|
|
namespace N {
|
|
void nested() {
|
|
}
|
|
}//end namespace N
|
|
|
|
template<typename T> class Gen {
|
|
};
|
|
|
|
template<> class Gen<int> {
|
|
};
|
|
|
|
template<typename T,typename U> class Partial {
|
|
};
|