Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail19922.d
blob: a7309fecc718d24d50a169f212555556dd043363 [
file
] [
log
] [
blame
]
/*
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
);
}