Files
kotlin-fork/js/js.translator/testData/box/simple/methodDeclarationAndCall.kt
T
2016-09-29 12:00:43 +03:00

12 lines
152 B
Kotlin
Vendored

package foo
class Test() {
fun method(): String {
return "OK"
}
}
fun box(): String {
var test = Test()
return test.method()
}