0071ca64c7
So #KT-19977 Fixed
11 lines
186 B
Kotlin
Vendored
11 lines
186 B
Kotlin
Vendored
// IS_APPLICABLE: true
|
|
// WITH_RUNTIME
|
|
|
|
class Test {
|
|
fun test() {
|
|
with(Any()) {
|
|
val f = { s: String<caret> -> foo(s) }
|
|
}
|
|
}
|
|
fun foo(s: String) {}
|
|
} |