blob: cf10fc5b19ae5d648d4c58a6119f70ec32fbf37a [file] [log] [blame]
// PR bootstrap/105567
// This was breaking with cdtor_returns_this.
template <class T>
struct A
{
A() { return; }
};
A<int> a;