2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0143.cs
1 // cs0143: Can't find the constructor for a determinated class.
2 // Line: 11 
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 }