Minor changes after code review

This commit is contained in:
Valentin Kipyatkov
2015-08-28 15:47:20 +03:00
parent 02922f3f93
commit a012fd0c7d
5 changed files with 32 additions and 7 deletions
@@ -0,0 +1,13 @@
class KotlinClass {
class Nested
}
fun foo(o: Any) {
f(o as <caret>)
}
fun f(p: JavaClass.Nested){}
fun f(p: KotlinClass.Nested){}
// EXIST: { lookupString: "Nested", allLookupStrings: "JavaClass, Nested", itemText: "JavaClass.Nested", tailText: " (<root>)" }
// EXIST: { lookupString: "Nested", allLookupStrings: "KotlinClass, Nested", itemText: "KotlinClass.Nested", tailText: " (<root>)" }