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