Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/packageMembers/DelegatedProperty.kt
2016-01-19 18:39:59 +03:00

13 lines
284 B
Kotlin
Vendored

// SKIP_IN_RUNTIME_TEST because the anonymous object has no container and thus a non-local ClassId
// TODO: unskip
package test
import kotlin.reflect.KProperty
annotation class Anno
@Anno val x: Int by object {
operator fun getValue(thiz: Any?, data: KProperty<*>) = null!!
}