MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag11425.d
blobf8edc5c7867ec9d27b6f35bb3db76a756e329e78
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag11425.d(13): Error: variable `x` is shadowing variable `diag11425.main.x`
5 ---
6 */
8 void main()
10 int x;
13 int x = 1;