Merge pull request #4615 from alexanderkyte/string_error_handling
[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