mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 05:30:13 +03:00
14 lines
185 B
D
14 lines
185 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/bug5096.d(13): Error: unmatched closing brace
|
|
---
|
|
*/
|
|
void foo(int x)
|
|
in {
|
|
assert(x > 0);
|
|
} do {
|
|
x++;
|
|
}
|
|
}
|
|
void main() {}
|