Files
kotlin/compiler/testData/codegen/boxInline/classObject/2.kt
2014-03-03 15:43:35 +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()
}
}
}