2004-05-07 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / errors / cs0657.cs
1 // cs0657.cs : 'assembly' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'type'
2 // Line : 7
3
4 using System.Reflection;
5
6 namespace N {
7     [assembly: AssemblyKeyName("")]
8     class A {}
9 }
10