Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1616.cs
1 // CS1616: Option `keyfile' overrides attribute `System.Reflection.AssemblyKeyFileAttribute' given in a source file or added module
2 // Line: 0
3 // Compiler options: -keyfile:CS1616.snk -warnaserror
4
5 using System.Reflection;
6
7 [assembly: AssemblyKeyFile("mono.snk")]
8
9 class C
10 {
11     public static void Main () {}
12 }