Merge all static runtime libs into libmono-static.
[mono.git] / mcs / errors / cs0316.cs
1 // CS0316: The parameter name `value' conflicts with a compiler generated name
2 // Line: 6
3
4 class C
5 {
6         int this [string value] {
7                 set { }
8         }
9 }