Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0449-2.cs
1 // CS0449: The `class' or `struct' constraint must be the first constraint specified
2 // Line: 8
3
4 public interface I
5 {
6 }
7
8 public class C<T> where T : I, class
9 {
10 }