New test.
[mono.git] / mcs / errors / cs0643.cs
1 // cs0643.cs: 'x' duplicate named attribute argument
2 // Line: 8
3
4 using System;
5
6 public class A : Attribute {
7         public int x;
8         [A (x = 1, x = 2)]
9         public static void Main ()
10         {
11         }
12 }
13