2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs3024.cs
blobed25779095b9178b536dd836f6a458cc2e4f2d37
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