cleol
[mcs.git] / errors / cs0643.cs
blobb0096f5a6b90ba667c8646f24c7d4955c6005789
1 // CS0643: Duplicate named attribute `x' argument
2 // Line: 8
4 using System;
6 public class A : Attribute {
7 public int x;
8 [A (x = 1, x = 2)]
9 public static void Main ()