Add tests for KT-35468

^KT-35468 Fixed
This commit is contained in:
Denis Zharkov
2020-04-10 16:06:00 +03:00
committed by Ilya Gorbunov
parent 9c2e149b5b
commit c6ae423816
11 changed files with 507 additions and 0 deletions
@@ -0,0 +1,10 @@
package test
class E1 : Exception()
class E2 : Exception()
@kotlin.Throws(E1::class)
fun kt() {}
@kotlin.jvm.Throws(E2::class)
fun ktJvm() {}