8 lines
142 B
Kotlin
Vendored
8 lines
142 B
Kotlin
Vendored
class FooException : Exception()
|
|
|
|
@Throws(FooException::class)
|
|
fun test() {
|
|
<caret>throw java.io.IOException()
|
|
}
|
|
|
|
// RUNTIME_WITH_FULL_JDK |