2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1677.cs
blobc005bfd7451172d1873f80387e753ef6fc4c158a
1 // CS1677: Parameter `1' should not be declared with the `ref' keyword
2 // Line: 9
5 delegate void D (int x);
7 class X
9 static void Main ()
11 D d2 = (ref int x) => {};