Files
kotlin-fork/idea/testData/inspectionsLocal/replaceArraysCopyOfWithCopyOf/qualified.kt.after
T
Nikolay Krasko d3ec145f13 Fixes for ReplaceArraysCopyOfWithCopyOfInspection
- Reduce applicability range
- Don't fix reporting level, otherwise it won't be possible to change
  it in settings
- Using isCalling utility
2018-10-12 18:21:38 +03:00

5 lines
99 B
Plaintext
Vendored

// WITH_RUNTIME
fun test() {
val array = intArrayOf(1, 2, 3)
val result = array.copyOf(3)
}