Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
visibility
/
invisiblePrivateThroughSubClass.kt
blob: f5d39d9bc57e729b2c3b1a268cedde69ad2f8934 [
file
]
// SKIP_TXT
abstract
class
A
{
fun foo
(
b
:
B
)
{
b
.<!
INVISIBLE_MEMBER
!>
prv
<!>()
}
private
fun prv
()
{}
}
abstract
class
B
:
A
()