summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1729-8.cs
blob: 52994f2e951b3e5de6a5e77c91a8801dd80d7140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS1729: The type `CS0143Test.A' does not contain a constructor that takes `2' arguments
// Line: 13 

namespace CS0143Test
{
	public class A
	{
		static void Main ()
		{
			string b="text";
			int c=2;
			
			A  a = new A (b, c);
		}
	}
}