New test.
[mono.git] / mcs / errors / cs1615.cs
1 // cs1615.cs: Argument `1' should not be passed with the `ref' keyword
2 // Line: 11
3
4 class C
5 {
6         public static void test (int i) {}
7
8         public static void Main()
9         {
10                 int i = 1;
11                 test (ref i);
12         }
13 }