Files
kotlin-fork/compiler/testData/diagnostics/tests/deparenthesize/ArrayAccessAssignment.kt
T
Svetlana Isakova 96c1564c54 added ExpressionTypingServices.deparenthesize()
(with type resolution)
2012-11-16 15:32:59 +04:00

5 lines
67 B
Kotlin

package t
fun foo(array: Array<Int>) {
(array[0] : Int) = 22
}