Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1572.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff4a7d99ac8919ff6a9d70c855c5bc52b6ebb65d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1572: XML comment on `Testing.Test.Baz(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
{
	public class Test
	{
		/// <param name='mismatch'>mismatch</param>
		public void Baz (int i) {}
	}
}