Fix testdata for tests which use varargs

Change tests to use new syntax for array literals to prevent deprecation
warnings (see KT-20171).
This commit is contained in:
Dmitry Savvinov
2017-10-11 18:03:21 +03:00
parent fd1aa97d0c
commit 87b85ce978
3 changed files with 4 additions and 4 deletions
@@ -6,4 +6,4 @@ public @interface A {
// FILE: b.kt
@A(String::class, Int::class) class MyClass1
@A(*arrayOf(String::class, Int::class)) class MyClass2
@A(value = *arrayOf(String::class, Int::class)) class MyClass3
@A(value = [String::class, Int::class]) class MyClass3