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

cs1729.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41d528efa2e9ef5bc61d56f61f97780be5bd4e44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// CS1729: The type `C.S' does not contain a constructor that takes `3' arguments
// Line: 15

class C
{
	struct S
	{
		public S (int i)
		{
		}
	}
	
	static void Main ()
	{
		S i = new S (1,1,1);
	}
}