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

gcs0698.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4484e522375ce847a0d217421222888e61c47e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0698.cs: Generic type can not derive from Attribute class
// Line: 5

using System;

class Stack<T> : Attribute
{ }

class X
{
	static void Main ()
	{ }
}