1b0d410a6f
NB startOffset of primary class constructor declaration should still point to the 'class' keyword (because of debugger requirements).
16 lines
150 B
Kotlin
Vendored
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
|
|
)
|
|
}
|