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

6 lines
127 B
Kotlin
Vendored

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