]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/ice15688.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice15688.d
1 // REQUIRED_ARGS: -o-
2 /*
3 TEST_OUTPUT:
4 ---
5 fail_compilation/ice15688.d(12): Error: undefined identifier `mappings`
6 fail_compilation/ice15688.d(12): Error: function expected before (), not 0 of type int
7 ---
8 */
9
10 void main()
11 {
12 (mappings, 0)();
13 }