409b41a9bfc55fe785dd4d2d12a27f9d9e6ec30e
[mono.git] / mcs / errors / gcs0702.cs
1 // CS0702: A constraint cannot be special class `System.Array'
2 // Line: 8
3
4 using System;
5
6 class Foo<T>
7         where T : Array
8 {
9 }