mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
14 lines
248 B
Plaintext
Vendored
14 lines
248 B
Plaintext
Vendored
package test
|
|
|
|
public sealed class Season {
|
|
private constructor Season()
|
|
|
|
public final class Cold : test.Season {
|
|
public constructor Cold()
|
|
}
|
|
|
|
public final class Warm : test.Season {
|
|
public constructor Warm()
|
|
}
|
|
}
|