c7d7d903cd
Only the WithoutJavac version for now, because the other one ignores javac errors.
14 lines
185 B
Kotlin
Vendored
14 lines
185 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
package test
|
|
|
|
class E1: Exception()
|
|
class E2: Exception()
|
|
|
|
@Throws()
|
|
fun none() {}
|
|
|
|
@Throws(E1::class)
|
|
fun one() {}
|
|
|
|
@Throws(E1::class, E2::class)
|
|
fun two() {} |