ignores
[mcs.git] / errors / gcs0455.cs
blob44aefafdc4aec7f3c2e05c5a2a7e6d6ba5f53225
1 // CS0455: Type parameter `T' inherits conflicting constraints `Test' and `World'
2 // Line: 13
3 using System;
5 class Test
6 { }
8 class World
9 { }
11 class Foo<T,U>
12 where T : Test, U
13 where U : World
14 { }
16 class X
18 static void Main ()
19 { }