Fix deprecations in testData: arrayOf usages.

This commit is contained in:
Ilya Gorbunov
2015-09-11 17:31:06 +03:00
parent ae7cc8e430
commit e40a5457e3
36 changed files with 88 additions and 88 deletions
@@ -11,8 +11,8 @@ annotation class JustEnum(val weapon: Weapon)
annotation class EnumArray(val enumArray: Array<Weapon>)
@JustEnum(Weapon.SCISSORS)
@EnumArray(array())
@EnumArray(arrayOf())
class C1
@EnumArray(array(Weapon.PAPER, Weapon.ROCK))
@EnumArray(arrayOf(Weapon.PAPER, Weapon.ROCK))
class C2