aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/tredecl2.C
blob: faaf8624f2732fa10f480f7f891547f57d241f91 (plain)
1
2
3
4
5
// No bug; making sure my fix for tredecl.C doesn't break other cases
// Build don't link:

template<class T> struct Foo { Foo<T> * me() { return this; } };
Foo<int> i;