Files
kotlin/compiler/testData/diagnostics/tests/callableReference/function/annotationClassConstructor.kt
2015-11-19 18:31:20 +03:00

6 lines
170 B
Kotlin
Vendored

annotation class Ann(val prop: String)
val annCtorRef = ::<!CALLABLE_REFERENCE_TO_ANNOTATION_CONSTRUCTOR!>Ann<!>
val annClassRef = Ann::class
val annPropRef = Ann::prop