blob: 159efc0ac7996a6698ed1e90c66b7524e20e5e45 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/test20096.d(15): Error: cannot `goto` into `try` block
---
*/
// https://issues.dlang.org/show_bug.cgi?id=20096
void test()
{
int x;
try {
L2:
goto L1;
try
{
L1:
++x;
goto L2;
}
finally
{
++x;
}
} finally {}
}