[mcs] C# 7 tuple (foundation only).
[mono.git] / mcs / errors / cs0579-7.cs
1 // CS0579: The attribute `System.CLSCompliantAttribute' cannot be applied multiple times
2 // Line : 10
3
4 using System;
5
6 [assembly:CLSCompliant(true)]
7
8 namespace DuplicateAttributes {
9         [CLSCompliant(true)]
10         [type:CLSCompliant(true)]
11         public class ClassA {}
12 }