[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs1729.cs
1 // CS1729: The type `C.S' does not contain a constructor that takes `3' arguments
2 // Line: 15
3
4 class C
5 {
6         struct S
7         {
8                 public S (int i)
9                 {
10                 }
11         }
12         
13         static void Main ()
14         {
15                 S i = new S (1,1,1);
16         }
17 }
18