Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/throws/DefaultArgs.kt
2015-06-12 09:23:31 +03:00

11 lines
197 B
Kotlin
Vendored

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