Flush (work in progress)
[mono.git] / mcs / errors / gcs0455-3.cs
1 // CS0455: Type parameter `T' inherits conflicting constraints `System.ValueType' and `Test'
2 // Line: 8
3
4 class Test
5 { }
6
7 class Foo<T,U>
8         where T : struct, U
9         where U : Test
10 { }