10 lines
183 B
Plaintext
Vendored
10 lines
183 B
Plaintext
Vendored
import java.io.IOException
|
|
|
|
class FooException : Exception()
|
|
|
|
@Throws(FooException::class, IOException::class)
|
|
fun test() {
|
|
throw java.io.IOException()
|
|
}
|
|
|
|
// RUNTIME_WITH_FULL_JDK |