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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs1661-2.cs
blob
a7035ef01951051449f0857d98e2c53cdaafc262
1
// CS1661: Cannot convert `lambda expression' to delegate type `C.WithOutParam' since there is a parameter mismatch
2
// Line: 10
3
4
class
C
5
{
6
delegate void
WithOutParam
(
out string value
);
7
8
static void
Main
()
9
{
10
WithOutParam o
= (
string
l
) =>
{ return; }
;
11
}
12
}