blob: 29e8ed47f19e9ce4afbc32741da8d89b1d7128a6 [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)
{
}
}