]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/ice15317.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice15317.d
1 // REQUIRED_ARGS: -o-
2 /*
3 TEST_OUTPUT:
4 ---
5 fail_compilation/ice15317.d(11): Error: undefined identifier `fun`
6 ---
7 */
8
9 void main()
10 {
11 alias f = fun;
12 auto x1 = &f;
13 }