[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0406.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