2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1614.cs
blob8b660c8c8e6779f027d35b5e774b0b442230f272
1 // cs1614.cs: `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 {}