Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / gcs0455.cs
blobe957adff45d0e65bff6d4caad0103b459477ec70
1 // CS0455: Type parameter `T' inherits conflicting constraints `Test' and `World'
2 // Line: 11
4 class Test
5 { }
7 class World
8 { }
10 class Foo<T,U>
11 where T : Test, U
12 where U : World
13 { }