MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / test143.d
blob1a1ed70698bf3a0dd6fea1d4168c0e2e910ca9e5
1 // REQUIRED_ARGS: -de
2 // https://issues.dlang.org/show_bug.cgi?id=143
3 // EXTRA_FILES: imports/test143.d
4 /*
5 TEST_OUTPUT:
6 ---
7 fail_compilation/test143.d(20): Error: undefined identifier `x`
8 ---
9 */
10 module test143;
12 import imports.test143;
14 void bar(int)
18 void foo()
20 bar(x);