Files
kotlin/compiler/testData/codegen/properties/fieldPropertyAccess.kt
2013-01-24 21:12:27 +04:00

6 lines
59 B
Kotlin
Vendored

private var x = 0;
fun increment(): Int {
return ++x;
}