9 lines
106 B
Kotlin
Vendored
9 lines
106 B
Kotlin
Vendored
// "Create parameter 's'" "true"
|
|
|
|
class Foo(val n: Int) {
|
|
|
|
}
|
|
|
|
fun bar() {
|
|
Foo(n = 1, <caret>s = "2")
|
|
} |