70d0c2ff92
#KT-6213 Fixed
16 lines
289 B
Kotlin
16 lines
289 B
Kotlin
trait MyIterable<T> : Iterable<T>
|
|
|
|
class E : RuntimeException()
|
|
fun foo(): MyIterable<String> = throw E()
|
|
|
|
fun box(): String {
|
|
try {
|
|
foo().iterator().next()
|
|
return "Fail: E should have been thrown"
|
|
} catch (e: E) {}
|
|
|
|
Test.checkCallFromJava()
|
|
|
|
return "OK"
|
|
}
|