Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/throws/DefaultArgs.kt
2015-09-18 10:14:32 +03:00

11 lines
200 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) {}
}