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