Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1501-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a448522c423803f25486b24fdbac0b2178abcb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs0143: Can't find the constructor for a determinated class.
// Line: 11 

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