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

gcs0080.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9819f677a1a61e66454cb7b0109123a1be2e1ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs8200.cs: Do not allow type-parameter-constraint-clauses when
// there is no type-parameter list
//
using System.Collections;
class Dingus where T : IEnumerable {
}

class D {
	static void Main ()
	{
	}
}