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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0215.cs
blob
95d77a546b7e7b052406edb247395e170830b779
1
// CS0215: The return type of operator True or False must be bool
2
// Line: 11
3
4
class
Blah
{
5
6
public static void
Main
()
7
{
8
9
}
10
11
public static int operator true
(
Blah i
) {}
12
13
}