Files
kotlin-fork/compiler/testData/diagnostics/tests/extensions/contextReceivers/thisIdentifierInfo.fir.kt
T
2021-12-02 20:23:40 +03:00

6 lines
227 B
Kotlin
Vendored

class A(val a: String?)
context(A) fun f() {
if (<!UNRESOLVED_LABEL!>this@A<!>.<!UNRESOLVED_REFERENCE!>a<!> == null) return
<!UNRESOLVED_LABEL!>this@A<!>.<!UNRESOLVED_REFERENCE!>a<!>.<!UNRESOLVED_REFERENCE!>length<!>
}