bb808b5620
Moved tests for completion and their test data into module idea-completion
8 lines
121 B
Kotlin
8 lines
121 B
Kotlin
package test
|
|
|
|
enum class EnumTest(val i: Int = 0) {
|
|
ENTRY1: EnumTest()
|
|
ENTRY2: EnumTest(1)
|
|
}
|
|
|
|
class EAnotherClass |