Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4783822fbc6124c4ba34c64fc79b53dde6b500f7
/
.
/
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
();
}
}