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