Files
kotlin/compiler/testData/codegen/boxWithJava/delegation/delegationAndInheritanceFromJava.java
Alexander Udalov cdceaec79f Fix unjustified descriptorToDeclaration in bridge codegen
Delegated and synthesized members don't usually have a declaration as well as
fake overrides
2014-04-18 17:18:51 +04:00

8 lines
166 B
Java

import java.util.Set;
public class delegationAndInheritanceFromJava {
public interface A extends Set<String> {}
public interface B extends Set<String> {}
}