summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0643.cs
blob: b0096f5a6b90ba667c8646f24c7d4955c6005789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0643: Duplicate named attribute `x' argument
// Line: 8

using System;

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