overflow bug has been fixed in net_4_0
[mcs.git] / errors / gcs0701.cs
blobf7c3fcb1ae218479146622f918c6d5be3f5c18d7
1 // CS0701: `A' is not a valid constraint. A constraint must be an interface, a non-sealed class or a type parameter
2 // Line: 6
4 sealed class A { }
6 class Foo<T> where T : A