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