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