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 #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs0501-3.cs
blob
3aa2376edf08c499fba506479fd737bc81e7080e
1
// CS0501: `C.operator !=(C, C)' must have a body because it is not marked abstract, extern, or partial
2
// Line: 6
3
4
class
C
5
{
6
public static bool operator
!= (
C l
,
C r
);
7
public static bool operator
== (
C l
,
C r
);
8
}