Fix unjustified descriptorToDeclaration in bridge codegen

Delegated and synthesized members don't usually have a declaration as well as
fake overrides
This commit is contained in:
Alexander Udalov
2014-04-18 17:18:51 +04:00
parent 45073c5a1c
commit cdceaec79f
4 changed files with 30 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
import java.util.Set;
public class delegationAndInheritanceFromJava {
public interface A extends Set<String> {}
public interface B extends Set<String> {}
}