2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs3024.cs
blob5f27743f77fd9c6ac202e495e0d5860a72b870f6
1 // CS3024: Constraint type `I' is not CLS-compliant
2 // Line: 13
3 // Compiler options: -warn:1 -warnaserror
5 using System;
6 [assembly:CLSCompliant (true)]
8 [CLSCompliant (false)]
9 public interface I
13 public class C<T> where T : I