[mcs] Allows shadowing of probing pattern variables
[mono.git] / mcs / errors / cs0449-3.cs
1 // CS0449: The `class' or `struct' constraint must be the first constraint specified
2 // Line: 6
3
4 public class C<T>
5 {
6       public void Foo<T>() where T : class, struct 
7       {
8       }
9 }