Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
coroutines
/
pr93458-5-bad-coro-type.C
blob: 765c04892efd9d6079c6c241595c9838aa859449 [
file
] [
log
] [
blame
]
// { dg-additional-options "-fsyntax-only -fexceptions -w" }
// Diagose bad coroutine function type.
#include
"coro.h"
int
bad_coroutine
(
void
)
{
co_yield
5
;
// { dg-error {unable to find the promise type for this coroutine} }
co_return
;
}