Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
coroutines
/
co-return-syntax-04-ctor-dtor.C
blob: 9396432e8bfdec94ba51c7425b88c8876067f15f [
file
] [
log
] [
blame
]
// { dg-additional-options "-fsyntax-only -w" }
#include
"coro.h"
struct
Foo
{
Foo
()
{
co_return
;
}
// { dg-error "cannot be used in a constructor" }
~
Foo
()
{
co_return
5
;
}
// { dg-error "cannot be used in a destructor" }
};