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