2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1677.cs
blob962d9c3210ca9ddd85bd688155e4b055b7cd1394
1 // cs1677.cs: 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) {};