[utils] Add check for ANDROID_UNIFIED_HEADERS to mono-compiler.h (#5742)
[mono.git] / mcs / errors / cs0702.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 }