Merge remote branch 'upstream/master'
[mono.git] / mcs / errors / cs0702-2.cs
1 // CS0702: A constraint cannot be special class `object'
2 // Line: 8
3
4 using System;
5
6 class Foo<T>
7         where T : object
8 {
9 }