Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/throws/TopLevel.kt
2014-01-23 17:59:18 +04:00

11 lines
160 B
Kotlin

class E1: Exception()
class E2: Exception()
throws()
fun none() {}
throws(javaClass<E1>())
fun one() {}
throws(javaClass<E1>(), javaClass<E2>())
fun two() {}