2005-06-29 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / cs1620.cs
blob5c036a4b5cfeee50ca6ea1f1ab488ed4601f4ee2
1 // cs1620.cs: Argument `1' must be passed with the `out' keyword
2 // Line: 13
4 class C
6 public static void test (out int i)
8 i = 5;
11 public static void Main() {
12 int i = 1;
13 test (ref i);