Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0405.cs
1 // CS0405: Duplicate constraint `I' for type parameter `T'
2 // Line: 8
3
4 interface I { }
5
6 class Foo<T>
7         where T : I, I
8 {
9 }