2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0455-2.cs
blob5bbf56f2bea9f7ab0e9055824ff57539dea5671b
1 // CS0455: Type parameter `V' inherits conflicting constraints `B' and `A'
2 // Line: 13
4 class A
5 { }
7 class B
8 { }
10 class Foo<T,U, V>
11 where T : A
12 where U : B
13 where V : U, T