blob: a2abad587640b437c4bf3655064c985ae6fc4e7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
TEST_OUTPUT:
---
fail_compilation/diag8697.d(10): Error: no property `Invalid` for type `diag8697.Base`
---
*/
interface InterBase : InterRoot { }
class Base : InterBase { }
void test(Base.Invalid) { }
interface InterRoot { }
|