mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
11 lines
200 B
Kotlin
Vendored
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) {}
|
|
} |