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: d79b3e167cb012051da13c18fcaa4f231efaddaa (plain)
1
2
3
4
5
6
7
// cs0698.cs: Generic type can not derive from Attribute class
// Line: 5

using System;

class Stack<T> : Attribute
{ }