Files
kotlin-fork/compiler/testData/cfg/declarations/properties/backingFieldQualifiedWithThis.kt
T
2014-03-07 21:08:14 +04:00

4 lines
86 B
Kotlin
Vendored

abstract class Bar {
abstract var bar : String
fun foo() = "foo" + this.$bar
}