Files
kotlin/compiler/testData/diagnostics/tests/script/topLevelVariable.kts
2016-05-13 19:11:23 +03:00

21 lines
302 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER -UNUSED_VARIABLE
import kotlin.reflect.KProperty
class Delegate {
operator fun getValue(t: Any?, p: KProperty<*>): Int {
return 1
}
}
val a: Int by Delegate()
class Foo {
val a: Int by Delegate()
}
fun foo() {
val a: Int by Delegate()
}