Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/throws/GenericSubstitution.kt
2015-05-12 19:43:17 +02:00

10 lines
130 B
Kotlin
Vendored

package test
class E1: Exception()
interface Base<T> {
throws(E1::class)
fun one(t: T) {}
}
class Derived: Base<String>