[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git] / mcs / errors / cs0455-6.cs
blob62b9bd31a29071dd6e3a4a13b35d38e6f29cd45c
1 // CS0455: Type parameter `T3' inherits conflicting constraints `X' and `Y'
2 // Line: 15
4 class X
8 class Y
12 class C<T1, T2, T3, T4>
13 where T1 : X
14 where T2 : T1
15 where T3 : Y, T4
16 where T4 : T2