2005-06-16 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / errors / cs1620.cs
1 // CS1620: Argument '1' must be passed with the 'out' keyword
2 // Line: 13
3
4 class C
5 {
6         public static void test (out int i)
7         {
8                 i = 5;
9         }
10
11         public static void Main() {
12                 int i = 1;
13                 test (ref i);
14         }
15 }