blob: a6ebfac320bbcb0b3b7c88b00bffbdbaa27f9779 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail267.d(15): Error: template Bar() does not have property 'foo'
---
*/
class C
{
template Bar()
{
}
}
typeof(C.Bar.foo) quux;