[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1729-8.cs
1 // CS1729: The type `CS0143Test.A' does not contain a constructor that takes `2' arguments
2 // Line: 13 
3
4 namespace CS0143Test
5 {
6         public class A
7         {
8                 static void Main ()
9                 {
10                         string b="text";
11                         int c=2;
12                         
13                         A  a = new A (b, c);
14                 }
15         }
16 }