Files
kotlin/compiler/testData/codegen/boxInline/simple/classObject.2.kt

18 lines
287 B
Kotlin
Vendored

package test
inline fun inline(s: () -> String): String {
return s()
}
class InlineAll {
inline fun inline(s: () -> String): String {
return s()
}
companion object {
inline fun inline(s: () -> String): String {
return s()
}
}
}