Tests for declaration mappings dumping from compiler

This commit is contained in:
Ilya Gorbunov
2016-03-17 22:26:46 +03:00
parent e7d75fccd6
commit 25abdf9fdb
18 changed files with 1402 additions and 1 deletions
@@ -0,0 +1,12 @@
@Retention(AnnotationRetention.RUNTIME)
internal annotation class Ann(
val i: Int,
val s: Short,
val f: Float,
val d: Double,
val l: Long,
val b: Byte,
val bool: Boolean,
val c: Char,
val str: String
)