1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* TEST_OUTPUT: --- fail_compilation/bug5096.d(13): Error: unmatched closing brace --- */ void foo(int x) in { assert(x > 0); } do { x++; } } void main() {}