repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0216.cs
blob
5c3b6783b66c68ee189df2a5b7c2e266f481da68
1
// CS0216: The operator `X.operator <(X, int)' requires a matching operator `>' to also be defined
2
// Line: 5
3
4
class
X
{
5
public static
X
operator
< (
X a
,
int
b
)
6
{
7
return null
;
8
}
9
10
static void
Main
() {
11
}
12
}
13