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: cbf7536e71c1132d98d0f99545f06929a1f74768 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0641.cs: Attribute `System.AttributeUsageAttribute' is only valid on classes derived from System.Attribute
// Line: 6

using System;

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