]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/fail19923.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail19923.d
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 */
8
9 module object;
10
11 class Object {}
12
13 void test()
14 {
15 Object o;
16 auto ti = o.classinfo;
17 }
18