blob: c44b289cceca5d7a1f90c2d464cf30e6ef25ba17 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/faildottypeinfo.d(11): Error: no property `typeinfo` for `0` of type `int`
fail_compilation/faildottypeinfo.d(12): Error: no property `typeinfo` for type `object.Object`
---
*/
void main()
{
auto x = 0.typeinfo;
auto y = Object.typeinfo;
}