Files
kotlin-fork/compiler/testData/diagnostics/tests/extensions/contextReceivers/thisIdentifierInfo.fir.kt
T

9 lines
134 B
Kotlin
Vendored

// !LANGUAGE: +ContextReceivers
class A(val a: String?)
context(A) fun f() {
if (this@A.a == null) return
this@A.a.length
}