Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
throws
/
TraitMembers.kt
blob: b965f26ad083c09c17d464bd970cfe4d03866f3d [
file
] [
log
] [
blame
]
package
test
class
E1
:
Exception
()
class
E2
:
Exception
()
interface
Trait
{
@Throws
()
fun none
()
{}
@Throws
(
E1
::
class
)
fun one
()
{}
@Throws
(
E1
::
class
,
E2
::
class
)
fun two
()
{}
}
class
Test
:
Trait