Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0657.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43713fb4617f69d3c77dfd82ba01ad88aaf5f253 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0657.cs : 'assembly' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'type'
// Line : 7

using System.Reflection;

namespace N {
    [assembly: AssemblyKeyName("")]
    class A {}
}