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