Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs1572-2.cs
1 // CS1572: XML comment on `Testing.Test.this[int]' has a param tag for `mismatch', but there is no parameter by that name
2 // Line: 10
3 // Compiler options: -doc:dummy.xml -warn:2 -warnaserror
4
5 namespace Testing
6 {
7         class Test
8         {
9                 /// <param name='mismatch'>mismatch</param>
10                 public int this[int i] {
11                         set {}
12                 }
13         }
14 }