Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
openInSealed.fir.kt
blob: 70a19484fbaf36bccf8cca529debec927bad3da1 [
file
]
sealed
class
My
(
open val x
:
Int
?)
{
init
{
if
(
x
!=
null
)
{
// Should be error: property is open
<!
SMARTCAST_IMPOSSIBLE
!>
x
<!>.
hashCode
()
}
}
}