Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/name/propertyAndMethodInImplementor.fir.kt
T
2023-01-09 08:57:08 +00:00

10 lines
84 B
Kotlin
Vendored

package foo
interface I {
fun foo() = 23
}
class Sub : I {
var foo = 42
}