Files
kotlin-fork/compiler/testData/diagnostics/tests/delegatedProperty/genericGetter.kt
T
2013-04-30 20:08:06 +04:00

10 lines
161 B
Kotlin

val a: Int by A(1)
class A<T: Any>(i: T) {
fun get(t: Any?, p: String): T {
t.equals(p) // to avoid UNUSED_PARAMETER warning
throw Exception()
}
}