Files
kotlin-fork/js/js.translator/testFiles/inline/cases/method.kt
T

11 lines
149 B
Kotlin

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