Files
kotlin-fork/compiler/testData/diagnostics/tests/extensions/contextReceivers/noLabelsByClassName.kt
T
Nikolay Lunyak 425d5e808b [FIR] Link some tests with issues
Just in case.

^KT-59874
2023-11-14 15:19:33 +00:00

29 lines
572 B
Kotlin
Vendored

// ISSUE: KT-63068
fun Int.f() {
this<!UNRESOLVED_REFERENCE!>@Int<!>
}
var Int.p: Int
get() {
this<!UNRESOLVED_REFERENCE!>@Int<!>
return<!UNRESOLVED_REFERENCE!>@p<!> 42
}
set(value) {
this<!UNRESOLVED_REFERENCE!>@Int<!>
}
class X {
var Int.p: Int
get() {
this<!UNRESOLVED_REFERENCE!>@Int<!>
return<!UNRESOLVED_REFERENCE!>@p<!> 42
}
set(value) {
this<!UNRESOLVED_REFERENCE!>@Int<!>
}
fun Int.f() {
this<!UNRESOLVED_REFERENCE!>@Int<!>
}
}