Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
crash54.C
blob: 89d59ef2c165ba8d518e20bf509ed9570ed168ea [
file
] [
log
] [
blame
]
// PR c++/42057
struct
A
;
// { dg-message "forward declaration" }
struct
B
{
virtual
B
*
foo
(
A
);
};
struct
C
:
virtual
B
{
virtual
C
*
foo
(
A
)
{
return
0
;
}
// { dg-error "incomplete type" }
};
C c
;