Files
kotlin-fork/compiler/testData/diagnostics/tests/extensions/contextReceivers/labelsFromClassNameForbidden.fir.kt
T
2023-11-22 13:22:45 +00:00

14 lines
289 B
Kotlin
Vendored

// ISSUE: KT-63068
fun List<Int>.f() {
this<!UNRESOLVED_LABEL!>@List<!>.size
}
<!UNSUPPORTED_FEATURE!>context(String)<!>
fun Int.f() {
this@String.length
this<!UNRESOLVED_LABEL!>@Int<!>.toDouble()
}
<!UNSUPPORTED_FEATURE!>context(String)<!>
val p: String get() = this@String