Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
throws
/
KotlinThrows.kt
blob: baf2a3b1b3d34e85f3cc02aac2fc560cf7ac5868 [
file
] [
log
] [
blame
]
package
test
class
E1
:
Exception
()
class
E2
:
Exception
()
@kotlin
.
Throws
(
E1
::
class
)
fun kt
()
{}
@kotlin
.
jvm
.
Throws
(
E2
::
class
)
fun ktJvm
()
{}