Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
smartSelection
/
superExpression.kt
blob: c0352b357a4d118b5fba6730915120a74b746edb [
file
] [
log
] [
blame
]
open
class
EE
()
{
open fun f
()
=
43
}
class
FF
()
:
EE
()
{
override
fun f
()
=
<caret>
super
.
f
()
-
1
}
/*
super.f()
super.f() - 1
*/