blob: 2c3a9369079322ff04b59fe1453645c032e8dd49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS1614: `A' is ambiguous between `A' and `AAttribute'. Use either `@A' or `AAttribute'
// Line: 6
// Bug #56456
using System;
public class A : Attribute {
[A]
public static void Main() {
}
}
public class AAttribute : Attribute {}
|