2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0406.cs
blob1d54a25fecd7a18951425dc50720aaee72d0de11
1 // CS0406: The class type constraint `B' must be listed before any other constraints. Consider moving type constraint to the beginning of the constraint list
2 // Line: 8
4 class A { }
5 class B { }
7 class Foo<T>
8 where T : A, B