Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
enumClass3.kt.after
blob: d5c14754889636f10ff467b4fae024aea7b6866f [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
enum
class
Foo
{
A
;
override
fun toString
():
String
{
<selection><caret>
return
super
.
toString
()</
selection
>
}
}