Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
06ab8cc69e303e70578de24dd9a1cf4ebafff93a
/
.
/
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