2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / 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