Add quickfix for java.lang.Class as annotation parameter

This commit is contained in:
Denis Zharkov
2015-04-20 15:29:44 +03:00
parent fc5236244b
commit 1fc742ffeb
24 changed files with 379 additions and 22 deletions
@@ -0,0 +1,6 @@
// "Replace Class<T> with KClass<T> in whole annotation" "true"
// WITH_RUNTIME
annotation class Ann(val arg: Array<Class<*>><caret>)
Ann(arg = array(javaClass<String>(), javaClass<Double>())) class MyClass