Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
visibility
/
invisiblePrivateThroughSubClassSmartCast.kt
blob: e0610b949f04423feebe9e220c205ff396830fe9 [
file
]
// FIR_IDENTICAL
// SKIP_TXT
abstract
class
A
{
fun foo
(
a
:
A
)
{
a
.
prv
()
if
(
a
is
B
)
{
a
.
prv
()
}
}
private
fun prv
()
{}
}
abstract
class
B
:
A
()