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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0216-5.cs
blob
af528374cc1a384726513217af577b0af051b138
1
// CS0216: The operator `Test.operator ==(Test, bool)' requires a matching operator `!=' to also be defined
2
// Line: 10
3
4
partial class
Test
5
{
6
}
7
8
partial class
Test
9
{
10
public static bool operator
== (
Test lhs
,
bool
rhs
)
11
{
12
return false
;
13
}
14
}
15