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