Remove scope from Qualifier
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
package b
|
||||
|
||||
import b.Bar.A.<caret>
|
||||
|
||||
|
||||
enum class Bar {
|
||||
A;
|
||||
|
||||
fun foo() {}
|
||||
}
|
||||
|
||||
// INVOCATION_COUNT: 2
|
||||
// ABSENT: foo
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
package b
|
||||
|
||||
import b.A.<caret>
|
||||
|
||||
class A {
|
||||
fun bar() {}
|
||||
|
||||
companion object {
|
||||
fun foo() {}
|
||||
}
|
||||
}
|
||||
|
||||
// INVOCATION_COUNT: 2
|
||||
// EXIST: Companion
|
||||
// ABSENT: bar
|
||||
// ABSENT: foo
|
||||
|
||||
Reference in New Issue
Block a user