J2K: adding type arguments where they are needed and removing them where they are redundant

This commit is contained in:
Valentin Kipyatkov
2014-07-15 20:43:38 +04:00
parent f836278acc
commit 957ffb0313
31 changed files with 213 additions and 95 deletions
+1 -1
View File
@@ -3,6 +3,6 @@ package demo
class Test {
fun test(vararg args: Any) {
var args = args
args = array<Int>(1, 2, 3)
args = array(1, 2, 3)
}
}