Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/classHeader/objectSuperConstructorArguments.kt
T

10 lines
263 B
Kotlin
Vendored

// FIR_IDENTICAL
open class S(val a: Any, val b: Any, val c: Any) {}
object A : S(<!UNRESOLVED_REFERENCE!>prop1<!>, <!UNRESOLVED_REFERENCE!>prop2<!>, <!UNRESOLVED_REFERENCE!>func<!>()) {
val prop1 = 1
val prop2: Int
get() = 1
fun func() {}
}