Files
kotlin-fork/compiler/testData/loadKotlin/class/InheritTraitWithFunctionParam.kt
T
Evgeny Gerashchenko 3f7627120b KT-3853 ISE on resolving function implementation from trait from Java
The fix is simple and dirty, because the related code will be removed soon anyways. Fix is necessary for compiling Kara.

 #KT-3853 fixed
2013-08-08 21:39:25 +04:00

9 lines
93 B
Kotlin

package test
trait Trait {
open fun f(a: String) {
}
}
open class Class : Trait {
}