12 lines
125 B
Text
12 lines
125 B
Text
import kotlin.lang.test
|
|
|
|
trait A {
|
|
fun x()
|
|
}
|
|
|
|
fun xxx() : Int {
|
|
return 888
|
|
}
|
|
|
|
public fun main(args : Array<String>) {
|
|
}
|