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