In ilasm/tests:
[mcs.git] / errors / cs1615.cs
blob03677f72c1dff9184b5cc940ccc32ec34d21a82c
1 // cs1615.cs: Argument `1' should not be passed with the `ref' keyword
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);