]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/fail4375o.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail4375o.d
1 // REQUIRED_ARGS: -w
2 // 4375: Dangling else
3
4 void main() {
5 if (true)
6 for (; false;)
7 if (true)
8 assert(82);
9 else
10 assert(83);
11 }
12