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

10 lines
95 B
Kotlin
Vendored

package foo
open class Super {
val foo = 23
}
class Sub : Super() {
fun foo() = 42
}