Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/diagnostics/constructorInInterface.kt
T
2022-11-08 14:51:33 +01:00

8 lines
207 B
Kotlin
Vendored

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