Files
kotlin-fork/compiler/testData/diagnostics/tests/delegatedProperty/genericGetter.kt
T

10 lines
171 B
Kotlin

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