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
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0659-2.cs
blob
ed21e0e9f7538b727e4a21d1f0ad8e6df5d128c9
1
// cs0659-2.cs: `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
}