- KT-1227 Can't see basic types in class completion

- Remove duplicated test
This commit is contained in:
Nikolay Krasko
2012-02-10 18:42:23 +04:00
parent 21394c8486
commit 41455a56c5
9 changed files with 39 additions and 39 deletions
@@ -0,0 +1,5 @@
fun some() {
var a : A<caret>
}
// EXIST: Any
@@ -0,0 +1,5 @@
fun some() {
var a : In<caret>
}
// EXIST: Int
@@ -1,10 +0,0 @@
package testing.handlers
fun test() {
}
fun other() {
te<caret>()
}
// INSERT: test
@@ -1,10 +0,0 @@
package testing.handlers
fun test() {
}
fun other() {
test()<caret>
}
// INSERT: test
@@ -1,10 +1,10 @@
package testing.handlers
fun test() {
fun testFun() {
}
fun other() {
te<caret>
testFu<caret>
}
// INSERT: test
@@ -1,10 +1,10 @@
package testing.handlers
fun test() {
fun testFun() {
}
fun other() {
test()<caret>
testFun()<caret>
}
// INSERT: test