Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/throws/DefaultArgs.kt
2014-03-19 23:24:27 +04:00

11 lines
192 B
Kotlin

package test
class E1: Exception()
throws(javaClass<E1>())
fun one(a: Int = 1) {}
class One [throws(javaClass<E1>())] (a: Int = 1) {
throws(javaClass<E1>())
fun one(a: Int = 1) {}
}