Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
kt1398.kt
blob: 837c1270e3c1dec9e35916ba3bf94e54db089bea [
file
]
// WITH_STDLIB
open
class
Base
(
val bar
:
String
)
class
Foo
(
bar
:
String
)
:
Base
(
bar
)
{
fun something
()
=
bar
.
uppercase
()
}
fun box
()
=
Foo
(
"ok"
).
something
()