2006-03-05 Senganal T <tsenganal@novell.com>
[mono.git] / mcs / errors / gcs0702.cs
1 // gcs0702.cs: Bound cannot be special class `System.Array'
2 // Line: 8
3
4 using System;
5
6 class Foo<T>
7         where T : Array
8 {
9 }