Updated with review feedback.
[mono.git] / mcs / errors / cs0579.cs
1 // CS0579: The attribute `System.Reflection.AssemblyKeyNameAttribute' cannot be applied multiple times
2 // Line : 
3
4 using System.Reflection;
5 using System.Runtime.CompilerServices;
6
7
8 [assembly: AssemblyKeyName("")]
9 [assembly: AssemblyKeyName("")]
10
11 public class Blah {
12
13         public static void Main () { }
14 }