blob: 01afadcad0d1dd88da4bfa7dcbf37ddf7e53fd44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS1676: Parameter `1' must be declared with the `ref' keyword
// Line: 11
//
// The delegate has an explicit signature, so it can not be assigned.
//
delegate void D (ref int x);
class X {
static void Main ()
{
D d2 = delegate (int x) {};
}
}
|