blob: 2063e41492f9b61d239d745d4fe362aaf0fe5872 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/bug5096.d(13): Error: unmatched closing brace
---
*/
void foo(int x)
in {
assert(x > 0);
} do {
x++;
}
}
void main() {}