Files
kotlin-fork/analysis/low-level-api-fir/testData/dependentCopy/superCallArgument_secondaryConstructor.kt
T
2023-12-07 01:26:23 +01:00

9 lines
122 B
Kotlin
Vendored

package test
open class Base(i: Int)
val property = 10
class Child : Base {
constructor(): super(prop<caret>erty)
}