mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
22 lines
557 B
D
22 lines
557 B
D
// REQUIRED_ARGS: -w
|
|
// https://issues.dlang.org/show_bug.cgi?id=4375: Dangling else
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail4375h.d(18): Warning: else is dangling, add { } after condition at fail_compilation/fail4375h.d(15)
|
|
Error: warnings are treated as errors
|
|
Use -wi if you wish to treat warnings only as informational.
|
|
---
|
|
*/
|
|
|
|
void main() {
|
|
switch (4) {
|
|
default:
|
|
if (true) // disallowed
|
|
if (false)
|
|
assert(48);
|
|
else
|
|
assert(49);
|
|
break;
|
|
}
|
|
}
|