MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail296.d
blob920854f0bf0de65a9b13e0bc5740be50f7319ecc
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail296.d(10): Error: can only `*` a pointer, not a `int`
5 ---
6 */
8 // https://issues.dlang.org/show_bug.cgi?id=3117
9 // dmd crash by *1
10 void main(){ *1; }