2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-163.cs
blob67674b9505cf84a8f7e26b5f065a922be329c8d8
1 using System;
3 public class Blah {
5 static int Foo (string s)
7 return 2;
10 static int Foo (object o)
12 return 1;
15 public static int Main ()
17 int i = Foo (null);
19 if (i == 1) {
20 Console.WriteLine ("Wrong method ");
21 return 1;
24 return 0;