Files
kotlin-fork/compiler/testData/diagnostics/tests/extensions/contextReceivers/fromKEEP/dp.kt
T
2021-12-02 20:24:14 +03:00

20 lines
221 B
Kotlin
Vendored

class View
context(View) val Int.dp get() = 42 * this
fun View.f() {
123.dp
with(123) {
dp
}
}
fun Int.g(v: View) {
with(v) {
dp
}
}
fun h() {
123.<!NO_CONTEXT_RECEIVER!>dp<!>
}