blob: 67d02eb3afcc9fdb3f3fc4b244cf47aca7851f26 [file] [log] [blame]
/*
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)
{
}
}