2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1615.cs
blob1fe406da20061599e83505543a460dc120c6323d
1 // CS1615: Argument `#1' does not require `ref' modifier. Consider removing `ref' modifier
2 // Line: 11
4 class C
6 public static void test (int i) {}
8 public static void Main()
10 int i = 1;
11 test (ref i);