Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
visibility
/
protectedInternal.kt
blob: 90ba59bc74c5a12545131facba8a8fe4b20f0b01 [
file
]
// FIR_IDENTICAL
abstract
class
A
internal
class
B
:
A
()
abstract
class
Base
{
protected
abstract
val a
:
A
}
internal
class
Derived
:
Base
()
{
override
val a
=
B
()
get
()
=
field
}