KT-10004 Java to Kotlin: array.length is converted to array.size() instead of array.size

#KT-10004 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-11-16 21:51:52 +03:00
parent 4905275a30
commit d78390e489
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
internal object Test {
fun foo(args: Array<String>): Int {
return args.size()
return args.size
}
}