KT-8208: Support static members completion when receiver not-imported
#KT-8208 fixed
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
package foo
|
||||
|
||||
enum class Color {
|
||||
RED, GREEN, BLUE
|
||||
}
|
||||
|
||||
// ALLOW_AST_ACCESS
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
package bar
|
||||
|
||||
fun buz() {
|
||||
Color.<caret>
|
||||
}
|
||||
|
||||
// EXIST: RED
|
||||
// EXIST: GREEN
|
||||
// EXIST: BLUE
|
||||
// EXIST: values
|
||||
// EXIST: valueOf
|
||||
// NOTHING_ELSE
|
||||
Reference in New Issue
Block a user