2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1615-2.cs
blobf40951d03c6a89b2b07c613d47e042340d392af2
1 // CS1615: Argument `#2' does not require `out' modifier. Consider removing `out' modifier
2 // Line: 13
4 public class X
6 public static void Test (params int[] a)
10 public static void Main()
12 int i;
13 Test (1, out i);