13 lines
192 B
Kotlin
Vendored
13 lines
192 B
Kotlin
Vendored
// 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
|