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
/
cs1688.cs
blob
f9a3db3683cfb725716a5724e9fea329f157e481
1
// CS1688: Cannot convert anonymous method block without a parameter list to delegate type `C.WithOutParam' because it has one or more `out' parameters
2
// Line: 10
3
4
class
C
5
{
6
delegate void
WithOutParam
(
out string value
);
7
8
static void
Main
()
9
{
10
WithOutParam o
=
delegate
11
{
12
return
;
13
};
14
}
15
}