Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
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"
}