w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs1677-2.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) => {};