[K/N][Tests] Add test for KT-65659

^KT-65659
This commit is contained in:
Vladimir Sukharev
2024-02-13 23:26:54 +01:00
committed by Space Team
parent 090407b7e3
commit 243d6aed50
2 changed files with 27 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
typealias MyThrows = kotlin.Throws
class Foo {
@kotlin.Throws(Exception::class)
fun noalias() {}
@MyThrows(Exception::class)
fun aliased() {}
}