Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/diagnostics/constructorInInterface.kt
T
2021-05-25 20:39:34 +03:00

8 lines
207 B
Kotlin
Vendored

interface <!CONSTRUCTOR_IN_INTERFACE!>A(val s: String)<!>
interface <!CONSTRUCTOR_IN_INTERFACE!>B constructor(val s: String)<!>
interface C {
<!CONSTRUCTOR_IN_INTERFACE!>constructor(s: String)<!> {}
}