[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / tests / test-772.cs
1 using System;
2
3 public class Test
4 {
5         public static void Main ()
6         {
7                 Foo fu = new Foo (null);
8         }
9 }
10
11 class Foo
12 {
13         public Foo (object o)
14         {
15                 throw new ApplicationException ("wrong ctor");
16         }
17
18         public Foo (string s, params object[] args)
19         {
20         }
21 }