Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/expresssions/this.kt
T
2020-03-19 09:51:01 +03:00

9 lines
135 B
Kotlin
Vendored

class Bar
class Foo {
fun bar() = this
fun Bar.buz() = this
fun Bar.foo() = this@Foo
fun Bar.foobar() = this@foobar
}