9 lines
154 B
Plaintext
Vendored
9 lines
154 B
Plaintext
Vendored
// "Create local variable 'foo'" "true"
|
|
// ACTION: Create parameter 'foo'
|
|
|
|
class A {
|
|
val t: Int get() {
|
|
val foo = 0
|
|
return foo
|
|
}
|
|
} |