for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0698-2.cs
blob657f9e6e04b24400952c1a8242251c61035743a5
1 // CS0698: A generic type cannot derive from `X' because it is an attribute class
2 // Line: 6
4 using System;
6 class Stack<T> : X
7 { }
9 class X : Attribute