[mcs] Allow properties and indexers of by-ref values to be set without setter
[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 }