update readme (#21797)
[mono-project.git] / mcs / errors / cs0579.cs
blob4d0c92394eec9f228514dfe64ab1b3baa4dacf53
1 // CS0579: The attribute `System.Reflection.AssemblyKeyNameAttribute' cannot be applied multiple times
2 // Line :
4 using System.Reflection;
5 using System.Runtime.CompilerServices;
8 [assembly: AssemblyKeyName("")]
9 [assembly: AssemblyKeyName("")]
11 public class Blah {
13 public static void Main () { }