Files
kotlin-fork/compiler/testData/diagnostics/tests/delegatedProperty/absentErrorAboutInitializer.kt
T
2015-10-14 01:29:09 +03:00

9 lines
158 B
Kotlin
Vendored

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