[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / cs0579-4.cs
1 // CS0579: The attribute `System.Reflection.AssemblyKeyNameAttribute' cannot be applied multiple times
2 // Line : 7
3 // Compiler options: CS0579-4-1.cs
4
5 using System.Reflection;
6
7 [assembly: AssemblyKeyName("")]
8
9 public class Blah {
10         public static void Main () { }
11 }
12