FIR IDE: fix shortenings for enums

This commit is contained in:
Ilya Kirillov
2021-05-31 15:25:34 +02:00
committed by TeamCityServer
parent 0da488058d
commit edbfff71e9
4 changed files with 40 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
// FIR_COMPARISON
package test
enum class A {
B
}
fun usage() {
<selection>test.A.B</selection>
}
+10
View File
@@ -0,0 +1,10 @@
// FIR_COMPARISON
package test
enum class A {
B
}
fun usage() {
A.B
}