51e007116f
previously for instance `KtClassBody` could get here as `leaf` and `leaf.parent` will return `KtClass` for it, making gutter for `KtClass` appear twice if origingal identifier and `KtClassBody` got here in different passes (one in "inner" other in "outer")
23 lines
657 B
Kotlin
Vendored
23 lines
657 B
Kotlin
Vendored
actual annotation class <lineMarker descr="Has declaration in common module">Ann</lineMarker>(
|
|
actual val <lineMarker descr="Has declaration in common module">x</lineMarker>: Int, actual val y: String,
|
|
actual val <lineMarker descr="Has declaration in common module">z</lineMarker>: Double, actual val b: Boolean
|
|
)
|
|
|
|
/*
|
|
LINEMARKER: Has declaration in common module
|
|
TARGETS:
|
|
common.kt
|
|
expect annotation class <1>Ann(
|
|
*//*
|
|
LINEMARKER: Has declaration in common module
|
|
TARGETS:
|
|
common.kt
|
|
val <1>x: Int, val <2>y: String,
|
|
*//*
|
|
LINEMARKER: Has declaration in common module
|
|
TARGETS:
|
|
common.kt
|
|
val <2>z: Double, val <1>b: Boolean
|
|
*/
|
|
|