2007-03-09 Chris Toshok <toshok@ximian.com>
[mcs.git] / errors / cs1628.cs
blobdec36af875752dc562bc2d728db1cf632f60e990
1 // cs1628.cs: Cannot use ref or out parameter `a' inside an anonymous method block
2 // Line: 15
3 using System;
5 delegate void D ();
7 class X {
8 static void Main ()
12 static void Host (ref int a)
14 D b = delegate {
15 a = 1;