Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataClasses
/
sealedDataClass.kt
blob: 1b69cce9a20fc649cebefa714b3349e247867d68 [
file
]
// FIR_IDENTICAL
<!
INCOMPATIBLE_MODIFIERS
!>
sealed
<!>
<!
INCOMPATIBLE_MODIFIERS
!>
data
<!>
class
My
(
val x
:
Int
)
{
object
Your
:
My
(
1
)
class
His
(
y
:
Int
):
My
(
y
)
}