mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
326 B
Makefile
12 lines
326 B
Makefile
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail19076.d(12): Error: no property `V` for type `fail19076.I`
|
|
fail_compilation/fail19076.d(11): interface `I` defined here
|
|
fail_compilation/fail19076.d(12): Error: `(I).V` cannot be resolved
|
|
---
|
|
*/
|
|
|
|
interface P { }
|
|
interface I : P { }
|
|
auto F = __traits(getVirtualMethods, I, "V");
|