Store presence of spread operator for value argument in stubs

This commit is contained in:
Nikolay Krasko
2018-11-12 13:36:05 +03:00
parent 4c64db66dc
commit 2d1c76344c
13 changed files with 147 additions and 48 deletions
+12 -1
View File
@@ -117,4 +117,15 @@ annotation class Outer(
)
@Outer("value", nested = Nested(12, "nested value"))
class WithNested
class WithNested
// ==============================
annotation class ArraysSpread(
vararg val ia: Int
)
@ArraysSpread(
*[1, 2, 3]
)
class WithSpreadOperatorArrays