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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs1661.cs
blob
d7ed5a505f147d8afc027d5d66840a903340f866
1
// CS1661: Cannot convert `lambda expression' to delegate type `C.WithOutParam' since there is a parameter mismatch
2
// Line: 10
3
4
5
class
C
6
{
7
delegate void
WithOutParam
(
out string value
);
8
9
static void
Main
()
10
{
11
WithOutParam o
= (
string
l
) =>
{ return; }
;
12
}
13
}