891e033d5b
#KT-9664 Fixed
11 lines
193 B
Kotlin
Vendored
11 lines
193 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun foo(runnable: Runnable) {}
|
|
|
|
fun bar() {
|
|
foo(<caret>object : Runnable {
|
|
override fun run() {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
})
|
|
} |