1// { dg-do assemble  }
2// No bug; making sure my fix for tredecl.C doesn't break other cases
3
4template<class T> struct Foo { Foo<T> * me() { return this; } };
5Foo<int> i;
6