2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1628.cs
blob5c6af888bcc5a4cd12f0dd7aeea9d88476144b34
1 // CS1628: Parameter `a' cannot be used inside `anonymous method' when using `ref' or `out' modifier
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;