mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +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()
|
|
}
|
|
}
|