MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice17690.d
blob853b7952a797f4b4d268b9fdc7773d773baff504
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice17690.d(9): Error: undefined identifier `x`
5 ---
6 */
7 void main(){
8 scope(exit) int x=3;
9 assert(x==3);