Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/defaultParameterValues/kt27416.kt
T
2020-03-24 18:58:19 +03: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()