Files
kotlin-fork/compiler/testData/diagnostics/tests/extensions/contextReceivers/thisWithReceiverLabelsFunctions.fir.kt
T
2022-04-06 16:05:37 +00:00

30 lines
485 B
Kotlin
Vendored

// !LANGUAGE: +ContextReceivers
class A<T>(val a: T)
class B(val b: Any)
class C(val c: Any)
context(A<String>) fun A<Int>.f() {
this@A.a.<!UNRESOLVED_REFERENCE!>length<!>
}
context(A<String>, B) fun f() {
this@A.a.length
this@B.b
<!NO_THIS!>this<!>
}
context(A<Int>, A<String>, B) fun f() {
this@A.a.length
this@B.b
<!NO_THIS!>this<!>
}
context(A<Int>, A<String>, B) fun C.f() {
this@A.a.length
this@B.b
this@C.c
this@f.c
this.c
}