0cad4c9632
Covers: - suspend functional local variables - overloads - custom types with invoke operator
10 lines
158 B
Kotlin
Vendored
10 lines
158 B
Kotlin
Vendored
fun foo() {
|
|
val ext: String.(Int) -> Unit
|
|
|
|
val usedReceiver = "foo"
|
|
|
|
val <!UNUSED_VARIABLE!>unusedReceiver<!> = "bar"
|
|
|
|
usedReceiver.ext(10)
|
|
}
|