Files
kotlin-fork/compiler/testData/ir/sourceRanges/declarations/kt29862.kt
T
Dmitry Petrov 1b0d410a6f KT-29862 startOffset of class declaration
NB startOffset of primary class constructor declaration should still
point to the 'class' keyword (because of debugger requirements).
2019-02-15 16:25:16 +03:00

16 lines
150 B
Kotlin
Vendored

abstract class Test1(
val x: Int
) {
}
public
abstract
class Test2(
val x: Int
) {
inner
class TestInner(
val x: Int
)
}