Files
kotlin-fork/compiler/testData/cfg-variables/lexicalScopes/propertyAccessorScope.kt
T

12 lines
171 B
Kotlin
Vendored

fun foo() {
class A {
var a : Int
get() {
return field
}
set(v: Int) {
field = v
}
}
}