Merge pull request #1900 from esdrubal/cyclic-ref
[mono-project.git] / mcs / errors / cs0453-7.cs
blob1ad43f390ce3ea72756648ff53aa999c218e13e1
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
4 public class C<T> where T : struct
8 class A
10 public void Foo (C<string>[] args)