2006-05-06 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / errors / gcs0406.cs
1 // gcs0406.cs: `B': the class constraint for `T' must come before any other constraints
2 // Line: 9
3
4 class A { }
5 class B { }
6
7 class Foo<T>
8         where T : A, B
9 {
10 }