Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
compiler
/
testData
/
asJava
/
ultraLightFacades
/
throwsAnnotation.kt
blob: 7350e8870a7c3c40e448672c39af9823cd79a857 [
file
] [
log
] [
blame
]
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
()
{}