* corlib.build: remove AppDomain.cs from the corlib_res.dll.
[mono.git] / mcs / tests / test-34.cs
1 using System;
2
3 public class Blah {
4
5         public static void Foo (ref int i, ref int j)
6         {
7         }
8
9         public static void Foo (int i, int j)
10         {
11         }
12
13         public static int Main ()
14         {
15                 int i = 1;
16                 int j = 2;
17
18                 Foo (i, j);
19                 Foo (ref i, ref j);
20
21                 return  0;
22         }
23 }