[mcs] C# 7 tuple (foundation only).
[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 }