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

using System;

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