Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
resources
/
intentionDescriptions
/
ConvertSealedClassToEnumIntention
/
after.kt.template
blob: 8a7d03073db2bbf0c3511956e513b1c936a560d7 [
file
] [
log
] [
blame
]
enum
class
MyClass
(
val s
:
String
=
""
)
{
FOO
(
"FOO"
),
BAR
(
"BAR"
),
DEFAULT
();
fun foo
()
{
}
}