KT-949 AssertionFailure in quick fix

This commit is contained in:
Nikolay Krasko
2012-01-11 16:16:34 +04:00
parent c39b333631
commit cb2219e72d
4 changed files with 36 additions and 2 deletions
@@ -0,0 +1,15 @@
// "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]
}
@@ -0,0 +1,15 @@
// "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]
}