**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs1614.cs
bloba62d1486565afaa39d7d3478345557dd6079e4a4
1 // cs1614.cs: 'A': is ambiguous; use either '@A' or 'AAttribute'
2 // Line: 6
3 // Bug #56456
5 using System;
6 public class A : Attribute {
7 [A]
8 public static void Main() {
11 public class AAttribute : Attribute {}