a61b3ec461
There'll be an auto-generated test over this directory
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"
|
|
} |