Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
j2k
/
testData
/
fileOrElement
/
equals
/
Equals3.java
blob: 570ec33f7abe8b70536663d4b679acb0265773b9 [
file
] [
log
] [
blame
]
class
C
{
public
boolean
equals
(
C c
)
{
return
false
;
}
boolean
foo
(
C c1
,
C c2
)
{
return
c1
.
equals
(
c2
)
}
}