blob: 9bfc0a564eb94410e4684e1208cc595d56c58af2 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail19076.d(11): Error: no property `V` for type `fail19076.I`
fail_compilation/fail19076.d(11): Error: `(I).V` cannot be resolved
---
*/
interface P { }
interface I : P { }
auto F = __traits(getVirtualFunctions, I, "V");