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