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

cs0641.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21d426bfa45f3dab1e9e9728a293049fda9e26cf (plain)
1
2
3
4
5
6
7
8
9
10
// cs0641.cs: Attribute `AttributeUsage' is only valid on classes derived from System.Attribute
// Line: 6

using System;

[AttributeUsage (AttributeTargets.All)]
public class A
{
}