[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs1614.cs
1 // CS1614: `A' is ambiguous between `A' and `AAttribute'. Use either `@A' or `AAttribute'
2 // Line: 6
3 // Bug #56456
4
5 using System;
6 public class A : Attribute {
7         [A]
8         public static void Main() {
9         }
10 }
11 public class AAttribute : Attribute {}