[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1729-5.cs
1 // CS1729: The type `C' does not contain a constructor that takes `2' arguments
2 // Line: 16
3
4 class C
5 {
6         public C (int i)
7         {
8         }
9 }
10
11 public class Blah
12 {
13         public static void Main ()
14         {
15                 dynamic d = 1;
16                 var r = new C (1, d);
17         }
18 }