2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0579-7.cs
blobdb508eacbc16cc289db4dba9b57e2e2a5886f50a
1 // cs0579.cs: The attribute `System.CLSCompliantAttribute' cannot be applied multiple times
2 // Line : 10
4 using System;
6 [assembly:CLSCompliant(true)]
8 namespace DuplicateAttributes {
9 [CLSCompliant(true)]
10 [type:CLSCompliant(true)]
11 public class ClassA {}