Updated with review feedback.
[mono.git] / mcs / errors / cs0450.cs
1 // CS0450: `A': cannot specify both a constraint class and the `class' or `struct' constraint
2 // Line: 8
3
4 class A
5 {
6 }
7
8 class B<T> where T : class, A
9 {
10 }