mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
14 lines
351 B
D
14 lines
351 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/empty_statement.d(11): Error: use `{ }` for an empty statement, not `;`
|
|
fail_compilation/empty_statement.d(12): Error: use `{ }` for an empty statement, not `;`
|
|
fail_compilation/empty_statement.d(13): Error: use `{ }` for an empty statement, not `;`
|
|
---
|
|
*/
|
|
void main()
|
|
{
|
|
for (;;);
|
|
if (0);
|
|
while (0);
|
|
}
|