quote only work on lambda on net_4_0
[mcs.git] / errors / cs1729-8.cs
blobc61777332fc3758d852ed78b25910089864e5bfa
1 // CS1729: The type `cs0143Test.A' does not contain a constructor that takes `2' arguments
2 // Line: 13
4 namespace cs0143Test
6 public class A
8 static void Main ()
10 string b="text";
11 int c=2;
13 A a = new A (b, c);