cling/test/Autoloading/Def.h
manasij7479 01a4bf5e5b Initial tests for verifying forward declarations
(cherry picked from commit c9b5a07d5cd83100862e067ccff189e10c666f9b)
2014-06-04 10:06:00 +02:00

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 {
};