Add multi file test for completion of enum entry
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package test
|
||||
|
||||
enum class EnumTest(val i: Int = 0) {
|
||||
ENTRY1: EnumTest()
|
||||
ENTRY2: EnumTest(1)
|
||||
}
|
||||
|
||||
class EAnotherClass
|
||||
@@ -0,0 +1,8 @@
|
||||
package test
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
EnumTest.E<caret>
|
||||
}
|
||||
|
||||
// EXIST: ENTRY1, ENTRY2
|
||||
// ABSENT: EnumTest, EAnotherClass
|
||||
Reference in New Issue
Block a user