d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail19922.d
bloba7309fecc718d24d50a169f212555556dd043363
1 /*
2 DFLAGS:
3 TEST_OUTPUT:
4 ---
5 fail_compilation/fail19922.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 = typeid(o);