mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
181 B
D
15 lines
181 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail267.d(15): Error: template `Bar()` does not have property `foo`
|
|
---
|
|
*/
|
|
|
|
class C
|
|
{
|
|
template Bar()
|
|
{
|
|
}
|
|
}
|
|
|
|
typeof(C.Bar.foo) quux;
|