Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0702-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31f24a64d9d80321d5379dc426a857b023af484a (plain)
1
2
3
4
5
6
7
8
9
// gcs0702.cs: Bound cannot be special class `object'
// Line: 8

using System;

class Foo<T>
	where T : object
{
}