ReplaceJavaStaticMethodWithKotlinAnalogInspection: add more cases for Arrays

#KT-32512 Fixed
#KT-30124 Fixed
This commit is contained in:
Dmitry Gridin
2019-07-08 20:21:24 +03:00
parent 24caca1882
commit b2a60795da
22 changed files with 220 additions and 1 deletions
@@ -0,0 +1,8 @@
// WITH_RUNTIME
import java.util.Arrays
fun test() {
val a = arrayOf(1, 2, 3)
val b = arrayOf(1, 2, 3)
val result = Arrays.<caret>deepEquals(a, b)
}