mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
9 lines
110 B
Plaintext
Vendored
9 lines
110 B
Plaintext
Vendored
// "Create parameter 's'" "true"
|
|
|
|
class Foo(val n: Int, s: String) {
|
|
|
|
}
|
|
|
|
fun bar() {
|
|
Foo(n = 1, s = "2")
|
|
} |