Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0455-6.cs
1 // CS0455: Type parameter `T3' inherits conflicting constraints `X' and `Y'
2 // Line: 15
3
4 class X
5 {
6 }
7
8 class Y
9 {
10 }
11
12 class C<T1, T2, T3, T4>
13         where T1 : X
14         where T2 : T1
15         where T3 : Y, T4
16         where T4 : T2
17 {
18 }