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
2009-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs0748.cs
blob
e7db9d20d0b098ce75c1201a65f981ad8fcb2b5c
1
// CS0748: All lambda parameters must be typed either explicitly or implicitly
2
// Line: 11
3
4
5
public class
C
6
{
7
delegate void
E
();
8
9
public static void
Main
()
10
{
11
e
= (
ref int
E
,
v
) => {};
12
}
13
}