Add postfix template for the spread operator #KT-26249 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-08-21 00:05:15 +09:00
committed by Alexander Podkhalyuzin
parent 32d910320f
commit f1dc09f839
10 changed files with 55 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
fun test(a: IntArray) {
foo(a.spread<caret>)
}
fun foo(vararg args: Int) {}