Files
kotlin-fork/idea/testData/quickfix/autoImports/afterNoImportForIndex.kt
T
2012-01-11 16:16:34 +04:00

15 lines
228 B
Kotlin

// "Import Class" "false"
package Teting
class Some() {
// fun get(i : Int) : Int {
// return i
// }
}
fun main(args : Array<String>) {
val some = Some()
// Nothing should be changed
<caret>some[12]
}