ReplaceJavaStaticMethodWithKotlinAnalogInspection: add more cases for Arrays
#KT-32512 Fixed #KT-30124 Fixed
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
// WITH_RUNTIME
|
||||
fun test() {
|
||||
val a = arrayOf(2)
|
||||
val b = arrayOf(4)
|
||||
val aOffset = 1
|
||||
val bOffset = 2
|
||||
val len = 5
|
||||
java.lang.System.<caret>arraycopy(a, aOffset, b, bOffset, len)
|
||||
}
|
||||
Reference in New Issue
Block a user