2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0455-3.cs
blobfe08835898be0e24b33b7d2605e4f5e5e492c9ba
1 // CS0455: Type parameter `T' inherits conflicting constraints `System.ValueType' and `Test'
2 // Line: 8
4 class Test
5 { }
7 class Foo<T,U>
8 where T : struct, U
9 where U : Test
10 { }