3f7627120b
The fix is simple and dirty, because the related code will be removed soon anyways. Fix is necessary for compiling Kara. #KT-3853 fixed
9 lines
93 B
Kotlin
9 lines
93 B
Kotlin
package test
|
|
|
|
trait Trait {
|
|
open fun f(a: String) {
|
|
}
|
|
}
|
|
|
|
open class Class : Trait {
|
|
} |