Files
kotlin-fork/compiler/testData/asJava/ultraLightFacades/throwsAnnotation.kt
T
2019-06-03 17:23:41 +03:00

10 lines
216 B
Kotlin
Vendored

class MyException : Exception
@Throws(java.io.IOException::class, MyException::class)
fun readFile(name: String): String {}
// Should be mapped to java.lang.Throwable
@Throws(kotlin.Throwable::class)
fun baz() {}