summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0449-3.cs
blob: c23a624d9c491d9085eb36acf268d0ba50042e2d (plain)
1
2
3
4
5
6
7
8
9
// CS0449: The `class' or `struct' constraint must be the first constraint specified
// Line: 6

public class C<T>
{
      public void Foo<T>() where T : class, struct 
      {
      }
}