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

11 lines
157 B
Kotlin

package foo
fun box(): Boolean {
return (!(A().myInlineMethod()))
}
class A() {
inline fun myInlineMethod(): Boolean {
return false
}
}