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
/
cs0407-4.cs
blob
bee931b71eded4f3398fd9e6dac75b4306679c6a
1
// CS0407: A method or delegate `TestDelegateA MainClass.Method(bool)' return type does not match delegate `int TestDelegateA(bool)' return type
2
// Line: 12
3
4
delegate int
TestDelegateA
(
bool
b
);
5
6
public class
MainClass
7
{
8
static
TestDelegateA
Method
(
bool
b
)
9
{
10
return
Method
;
11
}
12
}
13