Fix UL-classes test renders and test data

This commit is contained in:
Igor Yakovlev
2019-07-01 18:07:12 +03:00
parent 4b1226e3d7
commit a9aa60491e
9 changed files with 105 additions and 38 deletions
@@ -1,15 +1,13 @@
import kotlin.reflect.KClass
/** should load cls */
annotation class SimpleAnn(val value: String)
/** should load cls */
annotation class Ann(
val x: Int,
val y: String,
val z: KClass<*>,
val e: Array<KClass<*>>,
val depr: DeprecationLevel
val depr: DeprecationLevel,
vararg val t: SimpleAnn
)