Merge pull request #3997 from lateralusX/jlorenss/win-api-family-support-safearray
[mono.git] / mcs / errors / cs3014-3.cs
1 // CS3014: `I' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
2 // Line: 8
3 // Compiler options: -warnaserror -warn:1
4
5 using System;
6
7 [CLSCompliant (true)]
8 public interface I {
9 }