Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
goto1.d
blob: c4b807c6c4aeeb382d35743c2a9b1419913b078e [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/goto1.d(1010): Error: `return` statements cannot be in `finally` bodies
---
*/
void
foo
();
void
bar
();
#line
1000
void
test2
()
{
try
{
foo
();
}
finally
{
bar
();
return
;
}
}