10 lines
153 B
Plaintext
Vendored
10 lines
153 B
Plaintext
Vendored
// FIX: Convert sealed sub-class to object
|
|
// WITH_RUNTIME
|
|
|
|
sealed class Sealed
|
|
|
|
object SubSealed : Sealed() {
|
|
init {
|
|
println("init")
|
|
}
|
|
} |