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
* CommandLineException.cs (Message): Include the inner exception message
[mcs.git]
/
errors
/
cs0216-2.cs
blob
e7d7ba0cb18543ff1d787101715bb1e82f8f5265
1
// CS0216: The operator `X.operator true(X)' requires a matching operator `false' to also be defined
2
// Line: 5
3
4
class
X
{
5
public static bool operator true
(
X i
)
6
{
7
return true
;
8
}
9
10
static void
Main
()
11
{
12
}
13
}