MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail3731.d
blobc2903bb73c288c597ca6bc4a3ef4ae730441cc69
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail3731.d(13): Error: cannot implicitly convert expression `x` of type `immutable(D)` to `fail3731.main.C`
5 ---
6 */
8 void main()
10 class C {}
11 class D : C {}
12 auto x = new immutable(D);
13 C y = x;