0cad4c9632
Covers: - suspend functional local variables - overloads - custom types with invoke operator
10 lines
143 B
Kotlin
Vendored
10 lines
143 B
Kotlin
Vendored
fun foo() {
|
|
val x = fun(s: String) {}
|
|
|
|
fun nested() {
|
|
val <!UNUSED_VARIABLE!>x<!> = fun(i: Int) {}
|
|
|
|
x("hello")
|
|
}
|
|
}
|