Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
codeInsight
/
generate
/
equalsWithHashCode
/
noVars.kt.after
blob: b89df63a79857870379592b08b62bfc95a69ca83 [
file
]
class
A
{
fun foo
()
{
}
<caret>
override
fun equals
(
other
:
Any
?):
Boolean
{
if
(
this
===
other
)
return
true
if
(
javaClass
!=
other
?.
javaClass
)
return
false
return
true
}
override
fun hashCode
():
Int
{
return
javaClass
.
hashCode
()
}
}