mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
14 lines
208 B
Kotlin
Vendored
14 lines
208 B
Kotlin
Vendored
annotation class AllOpen
|
|
|
|
@AllOpen
|
|
sealed class Sealed {
|
|
class C1 : Sealed() {}
|
|
class C2 : Sealed() {}
|
|
}
|
|
|
|
sealed class Sealed2 {
|
|
@AllOpen
|
|
class C1 : Sealed2() {}
|
|
|
|
class C2 : Sealed2() {}
|
|
} |