Redundant companion reference: Fix false negative in enum entry #KT-27861 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
07ca958ff0
commit
23b9889ebb
@@ -0,0 +1,7 @@
|
||||
enum class E(val value: String) {
|
||||
E1(E.<caret>Companion.foo);
|
||||
|
||||
companion object {
|
||||
const val foo = ""
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
enum class E(val value: String) {
|
||||
E1(E.foo);
|
||||
|
||||
companion object {
|
||||
const val foo = ""
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user