Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
ctor10.C
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
;