Files
kotlin/compiler/testData/codegen/boxInline/simple/classObject.2.kt
2014-07-07 10:51:46 +04:00

18 lines
283 B
Kotlin

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