blob: c1bac8dc0846cf5818a047e8e31f56192d1704c1 [file]
// SKIP_IN_FIR_TEST
// Reason: KT-4455
package test;
public class SubclassFromNested implements B.C {
}
class B {
B(C c) {}
interface C {
}
}