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