mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
12 lines
241 B
Kotlin
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"
|
|
} |