Merge pull request #880 from awinters-fvs/xbuild/make-dist-fix
[mono.git] / mcs / errors / cs0706.cs
1 // CS0706: Invalid constraint type `string[]'
2 // Line: 4
3
4 public class C<T>  where T : string[]
5 {
6 }