mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
13 lines
293 B
Kotlin
Vendored
13 lines
293 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<*>): Nothing = null!!
|
|
}
|