2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0579-6.cs
blobfb142f569dc7d76364086b8848ffe452b15b8d9e
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 [CLSCompliant(true)]
11 public class ClassA {}