Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
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
()
{}