Files
kotlin-fork/compiler/testData/cfg/backingFieldQualifiedWithThis.kt
T

4 lines
86 B
Kotlin

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