Files
kotlin-fork/compiler/testData/compileJavaAgainstKotlin/method/throws/DefaultArgs.kt
T
2015-09-04 17:23:26 +03:00

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