mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
10 lines
252 B
Kotlin
Vendored
10 lines
252 B
Kotlin
Vendored
package test
|
|
|
|
class E1: Exception()
|
|
class E2: Exception()
|
|
|
|
class None @throws() constructor() {}
|
|
class One @throws(E1::class) constructor()
|
|
class Two @throws(E1::class, E2::class) constructor()
|
|
|
|
class OneWithParam @throws(E1::class) constructor(a: Int) |