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: 82ff675d813a37519cdc188b0ac78a6280519f28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0579.cs : Duplicate `CLSCompliant' attribute
// Line : 10

using System;

[assembly:CLSCompliant(true)]

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