Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0643.cs
1 // CS0643: Duplicate named attribute `x' 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