Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
ctor5.C
blob: 917bfb06c347e3bbc2ec2a0f825f8f310b818055 [
file
] [
log
] [
blame
]
// PR c++/27309
// { dg-additional-options "-Wno-return-type" }
struct
A
{
int
i
;
// { dg-message "previous" }
A
()
i
()
{}
// { dg-error "declaration" }
};
struct
B
{
A a
;
};
B b
;