mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
11 lines
192 B
Kotlin
11 lines
192 B
Kotlin
package test
|
|
|
|
class E1: Exception()
|
|
|
|
throws(javaClass<E1>())
|
|
fun one(a: Int = 1) {}
|
|
|
|
class One [throws(javaClass<E1>())] (a: Int = 1) {
|
|
throws(javaClass<E1>())
|
|
fun one(a: Int = 1) {}
|
|
} |