fadedc84db
Tests that the default argument mask is not in the local variable table.
9 lines
228 B
Kotlin
Vendored
9 lines
228 B
Kotlin
Vendored
fun box(): String {
|
|
fun foo(s: String = "O") = s
|
|
return foo() + foo("K")
|
|
}
|
|
|
|
// For Compose special default arugment handling, we still do not want
|
|
// the default argument mask in the local variable table.
|
|
|
|
// 0 \$default |