Prohibit callable references to annotation class constructors.

See KT-4391.
This commit is contained in:
Dmitry Petrov
2015-11-19 10:38:45 +03:00
parent 0261a3fbbd
commit 42b587b0d5
7 changed files with 32 additions and 2 deletions
@@ -0,0 +1,5 @@
annotation class Ann(val prop: String)
val annCtorRef = ::<!CALLABLE_REFERENCE_TO_ANNOTATION_CONSTRUCTOR!>Ann<!>
val annClassRef = Ann::class
val annPropRef = Ann::prop