repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0659-2.cs
blob
fe84a7cdff8eb8b800926e8ae88bce06873907ce
1
// CS0659: `Test.Test' overrides Object.Equals(object) but does not override Object.GetHashCode()
2
// Line: 7
3
// Compiler options: -warnaserror -warn:3
4
5
namespace
Test
{
6
public partial class
Test
{
7
public override bool
Equals
(
object
obj
){
8
return true
;
9
}
10
11
static void
Main
() {}
12
}
13
}