[mcs] C# 7 tuple (foundation only).
[mono.git] / mcs / errors / cs3021-2.cs
1 // CS3021: `I' does not need a CLSCompliant attribute because the assembly is not marked as CLS-compliant
2 // Line: 9
3 // Compiler options: -warn:2 -warnaserror
4
5 using System;
6
7 [CLSCompliant (false)]
8 public partial interface I
9 {
10 }