Files
kotlin-fork/compiler/testData/loadKotlin/class/InheritTraitWithFunctionParam.txt
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

11 lines
269 B
Plaintext

package test
internal open class Class : test.Trait {
/*primary*/ public constructor Class()
internal open override /*1*/ /*fake_override*/ fun f(/*0*/ a: jet.String): jet.Unit
}
internal trait Trait {
internal open fun f(/*0*/ a: jet.String): jet.Unit
}