Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
codeInsight
/
generate
/
equalsWithHashCode
/
singleVarWithSuperClass.kt
blob: 9b9b2e13347d1290c3f0101932a537821c0f2e8e [
file
]
open
class
X
{
override
fun equals
(
other
:
Any
?)
=
super
.
equals
(
other
)
override
fun hashCode
()
=
super
.
hashCode
()
}
class
A
(
val n
:
Int
)
:
X
()
{<
caret
>
fun foo
()
{
}
}