Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
sealed
/
Instance.java
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
();
}
}