2007-10-17 Geoff Norton <gnorton@novell.com>
[mono.git] / mcs / errors / gcs3024.cs
1 // CS3024: Constraint type `I' is not CLS-compliant\r
2 // Line: 13\r
3 // Compiler options: -warn:1 -warnaserror\r
4 \r
5 using System;\r
6 [assembly:CLSCompliant (true)]\r
7 \r
8 [CLSCompliant (false)]\r
9 public interface I\r
10 {\r
11 }\r
12 \r
13 public class C<T> where T : I\r
14 {\r
15 }\r
16 \r