c++: robustify testcase [PR109752]
[official-gcc.git] / gcc / testsuite / g++.dg / template / ctor10.C
blobcf10fc5b19ae5d648d4c58a6119f70ec32fbf37a
1 // PR bootstrap/105567
2 // This was breaking with cdtor_returns_this.
4 template <class T>
5 struct A
7   A() { return; }
8 };
10 A<int> a;