Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
sealed
/
Instance.java
blob: 10bf366617addbfacae866f2681dca1b1b2a91cf [
file
]
package
test
;
public
class
Instance
{
// It is not possible to create Season instance (it's sealed in Kotlin)
static
Season
create
()
{
return
new
Season
();
}
}