15 lines
266 B
Plaintext
Vendored
15 lines
266 B
Plaintext
Vendored
// "class org.jetbrains.kotlin.idea.quickfix.ImportFix" "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]
|
|
} |