summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0702-2.cs
blob: 81d68f389f21b89a52a7e91ce17bd30569e4a29f (plain)
1
2
3
4
5
6
7
8
9
// CS0702: A constraint cannot be special class `object'
// Line: 8

using System;

class Foo<T>
	where T : object
{
}