Files
kotlin/compiler/testData/codegen/boxWithJava/delegation/delegationAndInheritanceFromJava.kt
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

7 lines
114 B
Kotlin

import delegationAndInheritanceFromJava.*
import java.util.HashSet
class Impl(b: B): A, B by b
fun box() = "OK"