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

13 lines
172 B
Kotlin
Vendored

fun List<Int>.f() {
this@List.size
}
context(String)
fun Int.f() {
this@String.length
this@Int.toDouble()
}
context(String)
val p: String get() = this@String