]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/fail139.d
Add D front-end, libphobos library, and D2 testsuite.
[gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail139.d
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail139.d(8): Error: forward reference to 'test'
5 ---
6 */
7
8 void test(typeof(&test) p)
9 {
10 }
11
12 void main()
13 {
14 test(null);
15 }
This page took 0.039029 seconds and 5 git commands to generate.