[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs1614.cs
blob2c3a9369079322ff04b59fe1453645c032e8dd49
1 // CS1614: `A' is ambiguous between `A' and `AAttribute'. 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 {}