2010-03-12 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / errors / gcs0455.cs
1 // CS0455: Type parameter `T' inherits conflicting constraints `Test' and `World'
2 // Line: 13
3 using System;
4
5 class Test
6 { }
7
8 class World
9 { }
10
11 class Foo<T,U>
12         where T : Test, U
13         where U : World
14 { }
15
16 class X
17 {
18         static void Main ()
19         { }
20 }