mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
This quick fix is for the UNSUPPORTED error. ^KTIJ-29488 GitOrigin-RevId: 22696df27b771907dfd3e2630e31e797d6e42f51
13 lines
415 B
Plaintext
13 lines
415 B
Plaintext
// "Replace with 'arrayOf'" "true"
|
|
annotation class Ann(val x: IntArray = [1, 2, 3]) {
|
|
class Nested {
|
|
val y1: IntArray = intArrayOf(
|
|
1,
|
|
2, // comment
|
|
3
|
|
)
|
|
}
|
|
}
|
|
|
|
// FUS_QUICKFIX_NAME: org.jetbrains.kotlin.idea.quickfix.ConvertCollectionLiteralToIntArrayOfFix
|
|
// FUS_K2_QUICKFIX_NAME: org.jetbrains.kotlin.idea.quickfix.ConvertCollectionLiteralToIntArrayOfFix |