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

9 lines
144 B
Kotlin
Vendored

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