Flush (work in progress)
[mono.git] / mcs / errors / gcs3009.cs
1 // CS3009: `C': base type `C<ulong>' is not CLS-compliant
2 // Line: 14
3 // Compiler options: -warnaserror -warn:1
4
5 using System;
6 [assembly:CLSCompliant(true)]
7
8 public class C<T>
9 {
10 }
11
12 public class C : C<ulong>
13 {
14 }