Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
throws
/
TopLevel.kt
blob: 3bc77076f4b1be1c3c328ed67bc6316ce83eefe5 [
file
] [
log
] [
blame
]
package
test
class
E1
:
Exception
()
class
E2
:
Exception
()
@Throws
()
fun none
()
{}
@Throws
(
E1
::
class
)
fun one
()
{}
@Throws
(
E1
::
class
,
E2
::
class
)
fun two
()
{}