Added "-220 Cannot resolve constructed type".
[mono.git] / mcs / errors / cs8214.cs
1 // cs8214.cs: Generic type can not derive from Attribute class
2 // Line: 5
3 using System;
4
5 class X<T> : Attribute {
6 }
7
8 class D { static void Main () {}}