Add light class test for annotation class

This commit is contained in:
Pavel V. Talanov
2015-10-27 20:59:33 +03:00
parent 37c17ba71e
commit 69b3e5e21e
4 changed files with 36 additions and 0 deletions
@@ -0,0 +1,10 @@
// Anno
annotation class Anno(
val i: Int,
val j: Int = 5,
val value: String = "a",
val d: Double = 0.0,
val ia: IntArray,
val ia2: IntArray = intArrayOf(1, 2, 3)
)