Files
kotlin-fork/js/js.translator/testData/inlineMultiFile/cases/simpleDefaultMethod/simpleDefaultMethod.2.kt
T
2014-10-03 14:23:47 +04:00

17 lines
267 B
Kotlin
Vendored

/*
* Copy of JVM-backend test
* Found at: compiler/testData/codegen/boxInline/defaultValues/simpleDefaultMethod.2.kt
*/
package test
inline fun emptyFun(arg: String = "O") {
}
inline fun simpleFun(arg: String = "O"): String {
val r = arg;
return r;
}