mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
8 lines
111 B
Plaintext
8 lines
111 B
Plaintext
// "Create parameter 'foo'" "true"
|
|
|
|
class A(var foo: Int) {
|
|
fun test(n: Int) {
|
|
foo = n + 1
|
|
}
|
|
}
|