Navigation to implementation: do not try to find expect enum inheritors
Before this commit, expect enum could find actual enum entries as its implementation, now it cannot. #KT-28206 Fixed
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
package test
|
||||
|
||||
expect enum class <caret>Some {
|
||||
FIRST,
|
||||
SECOND
|
||||
}
|
||||
|
||||
// REF: [testModule_JVM] (test).Some
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
actual enum class Some(val x: Int) {
|
||||
FIRST(1),
|
||||
SECOND(2)
|
||||
}
|
||||
Reference in New Issue
Block a user