Files
kotlin-fork/compiler/testData/cli/jvm/plugins/firAllOpenPlugin.kt
T
2022-07-20 09:07:26 +00:00

15 lines
203 B
Kotlin
Vendored

package foo
annotation class AllOpen
@AllOpen
class Base {
fun method() {}
val property = "hello"
}
class Derived : Base() {
override fun method() {}
override val property = "world"
}