Files
kotlin-fork/js/js.translator/testFiles/simple/cases/methodDeclarationAndCall.kt
T
2012-02-27 21:55:58 +04:00

12 lines
157 B
Kotlin

package foo
class Test() {
fun method() : Boolean {
return true;
}
}
fun box() : Boolean {
var test = Test()
return test.method()
}