Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
multifileClasses
/
sealedClassHierarchy.kt
blob: daf4f60d626f3b5dee32fafe50e2303c8e401892 [
file
]
// TARGET_BACKEND: JVM
// WITH_STDLIB
@file
:
JvmMultifileClass
@file
:
JvmName
(
"Test"
)
package
test
sealed
class
Foo
(
val value
:
String
)
class
Bar
:
Foo
(
"OK"
)
fun box
():
String
=
Bar
().
value