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: fa24f707b2326173d3d30f53033e36dcd7091e00 (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
{
}