blob: e7db9d20d0b098ce75c1201a65f981ad8fcb2b5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0748: All lambda parameters must be typed either explicitly or implicitly
// Line: 11
public class C
{
delegate void E ();
public static void Main ()
{
e = (ref int E, v) => {};
}
}
|