MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail19923.d
blobe118d3d61e391b18c006b2626a87c54352b42219
1 /*
2 DFLAGS:
3 TEST_OUTPUT:
4 ---
5 fail_compilation/fail19923.d(16): Error: `object.TypeInfo_Class` could not be found, but is implicitly used
6 ---
7 */
9 module object;
11 class Object {}
13 void test()
15 Object o;
16 auto ti = o.classinfo;