Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
throws
/
GenericSubstitution.kt
blob: 86410a26fd01314eabb0b634d53a4ebf83c61b32 [
file
] [
log
] [
blame
]
package
test
class
E1
:
Exception
()
interface
Base
<
T
>
{
@Throws
(
E1
::
class
)
fun one
(
t
:
T
)
{}
}
class
Derived
:
Base
<
String
>