Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
tempcons.C
blob: d56eab5197866b686bae52e28f531dd8ec193b25 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Bug: member initializers are allowed where they shouldn't be.
template
<
class
T
>
struct
A
{
int
i
;
Blarg
()
:
i
(
0
)
{
return
0
;
}
// { dg-error "" }
};