1 // REQUIRED_ARGS: -w
2 // https://issues.dlang.org/show_bug.cgi?id=4375: Dangling else
3 /*
4 TEST_OUTPUT:
5 ---
6 fail_compilation/fail4375o.d(15): Warning: else is dangling, add { } after condition at fail_compilation/fail4375o.d(11)
7 ---
8 */
9 
main()10 void main() {
11     if (true)
12         for (; false;)
13             if (true)
14                 assert(82);
15     else
16         assert(83);
17 }
18 
19