summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0579-4.cs
blob: ae9447ea9917c207803270a1a453db037a87df6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0579: The attribute `System.Reflection.AssemblyKeyNameAttribute' cannot be applied multiple times
// Line : 7
// Compiler options: CS0579-4-1.cs

using System.Reflection;

[assembly: AssemblyKeyName("")]

public class Blah {
	public static void Main () { }
}