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