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