Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
delegatedProperty
/
privateInSubClass.kt
blob: 2f90ae1597651698741ea481e4171a6b1d666379 [
file
]
// TARGET_BACKEND: JVM
// WITH_STDLIB
open
class
A
{
private
val _myVal
by
lazy
{
"1"
+
"2"
}
}
class
B
:
A
()
{
private
val _myVal
by
lazy
{
"O"
+
"K"
}
fun res
()
=
_myVal
}
fun box
():
String
{
return
B
().
res
()
}