11 lines
200 B
Kotlin
Vendored
11 lines
200 B
Kotlin
Vendored
/*
|
|
* Copy of JVM-backend test
|
|
* Found at: compiler/testData/codegen/boxInline/defaultValues/inlineInDefaultParameter.2.kt
|
|
*/
|
|
|
|
package test
|
|
|
|
inline fun getStringInline(): String {
|
|
return "OK"
|
|
}
|