2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-462.cs
blobc417994c029aba8a652d3db7f52d734d147b84ab
1 class X {
2 bool ok = false;
4 void Method (X x)
8 void Method (string x)
10 ok = true;
13 static int Main ()
15 X x = new X ();
17 x.Method ((string) null);
18 if (x.ok)
19 return 0;
20 return 1;