w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs3024-2.cs
blobdd0f96f3d565c699aff0a59340cd7d8fbfc919de
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