Add intention replacing vararg with array and vice versa #KT-23419 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-05-07 12:11:15 +03:00
committed by Mikhail Glukhikh
parent e933bb8220
commit da92eb63a0
50 changed files with 378 additions and 0 deletions
@@ -0,0 +1,4 @@
// INTENTION_TEXT: Convert to vararg parameter
fun test(<caret>a: Array<Int>) {
a[0] = 1
}