Files
kotlin/compiler/testData/codegen/boxInline/simpleDefaultMethod/2.kt

12 lines
143 B
Kotlin

package test
inline fun emptyFun(arg: String = "O") {
}
inline fun simpleFun(arg: String = "O"): String {
val r = arg;
return r;
}