summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1572-2.cs
blob: 2e069d32674f15bcbcfa5aa85821b4351f773414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS1572: XML comment on `Testing.Test.this[int]' has a param tag for `mismatch', but there is no parameter by that name
// Line: 10
// Compiler options: -doc:dummy.xml -warn:2 -warnaserror

namespace Testing
{
	class Test
	{
		/// <param name='mismatch'>mismatch</param>
		public int this[int i] {
			set {}
		}
	}
}