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