blob: 10bf366617addbfacae866f2681dca1b1b2a91cf [file] [log] [blame]
package test;
public class Instance {
// It is not possible to create Season instance (it's sealed in Kotlin)
static Season create() {
return new Season();
}
}