mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
25 lines
263 B
D
25 lines
263 B
D
|
|
/*
|
|
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;
|
|
}
|
|
}
|