Merge pull request #3766 from BrzVlad/feature-default-conc
[mono.git] / mcs / errors / cs0409.cs
1 // CS0409: A constraint clause has already been specified for type parameter `U'
2 // Line: 7
3
4 class C<T, U> where U: class, new() where U: new()
5 {
6 }