Files
kotlin-fork/compiler/testData/diagnostics/tests/incompleteCode/kt4866UnresolvedArrayAccess.kt
T
2014-04-30 13:34:34 +04:00

5 lines
151 B
Kotlin

//KT-4866 Resolve does not work inside brackets with unresolved reference before
fun test(i: Int, j: Int) {
<!UNRESOLVED_REFERENCE!>foo<!>[i, j]
}