Files
kotlin/compiler/testData/diagnostics/tests/constructorConsistency/delegate.kt
2016-06-03 09:45:37 +03:00

14 lines
238 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
import kotlin.reflect.KProperty
class Delegate(val x: Int) {
operator fun getValue(t: Any?, p: KProperty<*>): Int = x
}
class My {
val x: Int by Delegate(this.foo())
fun foo(): Int = x
}