Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/classMembers/DelegatedProperty.kt
2015-09-18 10:14:32 +03:00

10 lines
154 B
Kotlin
Vendored

package test
annotation class Anno
class Class {
@Anno val x: Int by object {
fun get(thiz: Class, data: PropertyMetadata) = null!!
}
}