[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs1677.cs
blobd371ef532b651008c50af62e477739820e5611af
1 // CS1677: Parameter `1' should not be declared with the `ref' keyword
2 // Line: 9
4 delegate void D (int x);
6 class X {
7 static void Main ()
9 D d2 = delegate (ref int x) {};