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

12 lines
193 B
Kotlin

// !DIAGNOSTICS: -UNUSED_PARAMETER
trait T {
val a: Int <!DELEGATED_PROPERTY_IN_TRAIT!>by Delegate()<!>
}
class Delegate {
fun get(t: Any?, p: PropertyMetadata): Int {
return 1
}
}