mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
17 lines
232 B
D
17 lines
232 B
D
/*
|
|
DFLAGS:
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail19922.d(16): Error: `object.TypeInfo_Class` could not be found, but is implicitly used
|
|
---
|
|
*/
|
|
|
|
module object;
|
|
|
|
class Object {}
|
|
|
|
void test()
|
|
{
|
|
Object o;
|
|
auto ti = typeid(o);
|
|
}
|