Files
kotlin-fork/js/js.translator/testData/simple/cases/methodDeclarationAndCall.kt
T
2014-03-11 20:04:00 +04:00

12 lines
155 B
Kotlin

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