Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs3024.cs
1 // CS3024: Constraint type `I' is not CLS-compliant
2 // Line: 13
3 // Compiler options: -warn:1 -warnaserror
4
5 using System;
6 [assembly:CLSCompliant (true)]
7
8 [CLSCompliant (false)]
9 public interface I
10 {
11 }
12
13 public class C<T> where T : I
14 {
15 }
16