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

cs0643.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d11593e67f5c6c207c0a216f3afa7f0842ff380c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0643.cs: 'x' duplicate named attribute argument
// Line: 8

using System;

public class A : Attribute {
	public int x;
	[A (x = 1, x = 2)]
	public static void Main ()
	{
	}
}