Files
kotlin-fork/compiler/testData/psi/CollectionLiterals.kt
T
2017-03-22 17:59:58 +03:00

14 lines
135 B
Kotlin
Vendored

fun test() {
[]
[1]
[1, 2]
[[]]
[[1]]
[1, []]
[[], 1]
[[], [1, []]]
[1,
2]
[1,
[2]]
}