Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
resources
/
intentionDescriptions
/
ConvertSealedClassToEnumIntention
/
before.kt.template
blob: 93093038204aaf74f6c2204ecfaf4758130c47f2 [
file
] [
log
] [
blame
]
sealed
class
MyClass
(
val s
:
String
=
""
)
{
fun foo
()
{
}
object
FOO
:
MyClass
(
"FOO"
)
object
BAR
:
MyClass
(
"BAR"
)
object
DEFAULT
:
MyClass
()
}