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