Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
exposed
/
exceptionOnFakeInvisible.kt
blob: 6b91def416e3f198c6bbc4f137e1d7379ed6fddc [
file
]
// KT-14469: SOE during effective visibility evaluation
abstract
class
Base
(
private
val v
:
String
)
fun bar
(
arg
:
String
)
=
arg
class
Derived
:
Base
(
"123"
)
{
private
<!
NOTHING_TO_INLINE
!>
inline
<!>
fun foo
()
{
bar
(<!
INVISIBLE_MEMBER
!>
v
<!>)
}
}