[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0657.cs
1 // CS0657: `assembly' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `type'. All attributes in this section will be ignored
2 // Line: 8
3 // Compiler options: -warnaserror
4
5 using System.Reflection;
6
7 namespace N {
8     [assembly: AssemblyKeyName("")]
9     class A {}
10 }
11