Fix line markers for actual enum entries

#KT-22632 Fixed
This commit is contained in:
Pavel V. Talanov
2018-03-29 16:16:36 +02:00
parent e66768cbb3
commit de71598794
9 changed files with 58 additions and 6 deletions
@@ -0,0 +1,9 @@
// !CHECK_HIGHLIGHTING
package test
expect enum class Enum {
A,
B,
C
}
@@ -0,0 +1,8 @@
package test
actual enum class <lineMarker>Enum</lineMarker> {
<lineMarker>A</lineMarker>,
<lineMarker>B</lineMarker>,
<lineMarker>C</lineMarker>,
D
}
@@ -0,0 +1,7 @@
package test
expect enum class <lineMarker>Enum</lineMarker> {
<lineMarker>A</lineMarker>,
<lineMarker>B</lineMarker>,
<lineMarker>C</lineMarker>
}
@@ -0,0 +1,9 @@
// !CHECK_HIGHLIGHTING
package test
actual enum class Enum {
A,
B,
C,
D
}