243d6aed50
^KT-65659
10 lines
162 B
Kotlin
Vendored
10 lines
162 B
Kotlin
Vendored
typealias MyThrows = kotlin.Throws
|
|
|
|
class Foo {
|
|
@kotlin.Throws(Exception::class)
|
|
fun noalias() {}
|
|
|
|
@MyThrows(Exception::class)
|
|
fun aliased() {}
|
|
}
|