mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
11 lines
184 B
Kotlin
11 lines
184 B
Kotlin
package test
|
|
|
|
class E1: Exception()
|
|
|
|
throws(E1::class) overloads
|
|
fun one(a: Int = 1) {}
|
|
|
|
class One [throws(E1::class)] (a: Int = 1) {
|
|
throws(E1::class)
|
|
fun one(a: Int = 1) {}
|
|
} |