Merge pull request #5664 from lateralusX/lateralusX/mkbundle-windows-toolchains
[mono.git] / mcs / errors / cs0453-7.cs
1 // CS0453: The type `string' must be a non-nullable value type in order to use it as type parameter `T' in the generic type or method `C<T>'
2 // Line: 10
3
4 public class C<T> where T : struct
5 {
6 }
7
8 class A
9 {
10         public void Foo (C<string>[] args)
11         {
12         }
13 }
14