New test.
[mono.git] / mcs / errors / cs0647-16.cs
1 // cs0647-16.cs: Error during emitting `System.Reflection.AssemblyCultureAttribute' attribute. The reason is `The executables cannot be satelite assemblies, remove the attribute or keep it empty'
2 // Line: 7
3
4 using System;
5 using System.Reflection;
6
7 [assembly: AssemblyCulture("es")]
8 [assembly: AssemblyVersion("1.2.3456.7")]
9
10 namespace NS 
11 {
12         class MyClass 
13         {
14                 static void Main ()
15                 {
16                         Console.WriteLine (typeof(MyClass).Assembly.FullName);
17                 }
18         }
19 }