mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
19 lines
217 B
D
19 lines
217 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail23.d(14): Error: `break` is not inside a loop or `switch`
|
|
---
|
|
*/
|
|
|
|
// ICE(s2ir.c) DMD0.100
|
|
|
|
void main()
|
|
{
|
|
try
|
|
{
|
|
break;
|
|
}
|
|
catch (Throwable)
|
|
{
|
|
}
|
|
}
|