MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail307.d
blobe871dbff06bee9b21f4e75f336924f2cfacc48f7
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail307.d(11): Error: cannot implicitly convert expression `cast(int)(cast(double)cast(int)b + 6.1)` of type `int` to `short`
5 ---
6 */
8 void main()
10 ubyte b = 6;
11 short c5 = cast(int)(b + 6.1);