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
|
|
}
|
|
}
|