Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
compiler
/
testData
/
cli
/
jvm
/
plugins
/
firAllOpenPlugin.kt
blob: a78806c9d09e0588847bc19536b50510761467cb [
file
]
package
foo
annotation
class
AllOpen
@AllOpen
class
Base
{
fun method
()
{}
val
property
=
"hello"
}
class
Derived
:
Base
()
{
override
fun method
()
{}
override
val
property
=
"world"
}