MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail105.d
blob0e13e3677eba0716f4381e427bdb21b47131dda4
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail105.d(11): Error: cannot cast `"bar"` to `int` at compile time
5 ---
6 */
8 //int foo = "foo";
10 // just Access Violation happens.
11 int bar = cast(int)cast(char*)"bar";