dmd/compiler/test/fail_compilation/diag8697.d
Nick Treleaven 56b14c11ff
Show type location for 'no property' error (#15586)
* Show type location for 'no property' error

* Remove local path from test output
2023-09-08 16:44:42 +03:00

13 lines
296 B
D

/*
TEST_OUTPUT:
---
fail_compilation/diag8697.d(11): Error: no property `Invalid` for type `diag8697.Base`
fail_compilation/diag8697.d(9): class `Base` defined here
---
*/
interface InterBase : InterRoot { }
class Base : InterBase { }
void test(Base.Invalid) { }
interface InterRoot { }