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

28 lines
387 B
Kotlin
Vendored

fun Int.f() {
this@Int
}
var Int.p: Int
get() {
this@Int
<!RETURN_NOT_ALLOWED!>return@p<!> 42
}
set(value) {
this@Int
}
class X {
var Int.p: Int
get() {
this@Int
<!RETURN_NOT_ALLOWED!>return@p<!> 42
}
set(value) {
this@Int
}
fun Int.f() {
this@Int
}
}