Files
kotlin-fork/compiler/testData/compileJavaAgainstKotlin/method/throws/DefaultArgs.kt
T
2015-05-27 12:23:08 +02:00

11 lines
187 B
Kotlin
Vendored

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