Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
other
/
error11.C
blob: d8a641c2b4ec556beb5963870040d907c8d733f3 [
file
] [
log
] [
blame
]
/* { dg-options "-O1" } */
struct
A
{
ERROR
;
/* { dg-error "ERROR" } */
~
A
();
};
struct
B
{
virtual
~
B
();
};
struct
C
:
B
,
A
{};
struct
D
:
C
{};
D d
;