MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail139.d
blobd5cdb99aa33654eedd66e35bab40a411c389ee42
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail139.d(8): Error: forward reference to `test`
5 ---
6 */
8 void test(typeof(&test) p)
12 void main()
14 test(null);