[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs0692.cs
1 // CS0692: Duplicate type parameter `A'
2 // Line: 4
3
4 class X <A,A> {
5 }