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: 3c1bf8acdb6345d3ce44d3029fd7479c8c2c1712 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0080.cs: Constraints are not allowed on non-generic declarations
// Line: 5

using System.Collections;
class Dingus where T : IEnumerable {
}

class D {
	static void Main ()
	{
	}
}