mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
192 B
D
12 lines
192 B
D
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test10.d(10): Error: found `else` without a corresponding `if`, `version` or `debug` statement
|
|
---
|
|
*/
|
|
|
|
void test(int i)
|
|
{
|
|
++i;
|
|
else
|
|
++i;
|
|
}
|