blob: 1613617bcd0157dae7969e9ebe078ce4d266747d [file] [log] [blame]
// REQUIRED_ARGS: -de
// PERMUTE_ARGS:
/*
TEST_OUTPUT:
---
fail_compilation/test15785b.d(15): Deprecation: imports.test15785.Base.T is not visible from module test15785b
fail_compilation/test15785b.d(16): Deprecation: imports.test15785.Base.T is not visible from module test15785b
fail_compilation/test15785b.d(17): Deprecation: imports.test15785.IBase2.T is not visible from module test15785b
---
*/
import imports.test15785;
class Derived : Base, IBase2
{
super.T t;
Base.T t2;
IBase2.T t3;
}