Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/defaultParameterValues/kt27416.kt
T
2019-06-13 12:25:06 +02:00

7 lines
119 B
Kotlin
Vendored

// !LANGUAGE: +InlineClasses
inline class A(val i: Int) {
fun foo(s: String = "OK") = s
}
fun box() = A(42).foo()