Files
kotlin-fork/compiler/testData/diagnostics/tests/delegatedProperty/genericGetter.kt
T
2015-02-10 06:55:46 +01:00

11 lines
154 B
Kotlin

// !DIAGNOSTICS: -UNUSED_PARAMETER
val a: Int by A(1)
class A<T: Any>(i: T) {
fun get(t: Any?, p: PropertyMetadata): T {
throw Exception()
}
}