Files
kotlin-fork/compiler/testData/codegen/regressions/kt2060_1.kt
T
Alex Tkachman 8012725d38 KT-2060 fix
2012-07-11 13:10:54 +03:00

12 lines
241 B
Kotlin

import testing.ClassWithInternals
public class HelloServer() : ClassWithInternals() {
public override fun start() {
val test = foo() + someGetter //+ some
}
}
fun box() : String {
HelloServer().start()
return "OK"
}