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

cs0579-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db508eacbc16cc289db4dba9b57e2e2a5886f50a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0579.cs: The attribute `System.CLSCompliantAttribute' cannot be applied multiple times
// Line : 10

using System;

[assembly:CLSCompliant(true)]

namespace DuplicateAttributes {
	[CLSCompliant(true)]
	[type:CLSCompliant(true)]
	public class ClassA {}
}