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

cs1573.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e374512b4d941adad0e36dee3d3ff2b5c51d7d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs1573.cs: Parameter `j' has no matching param tag in the XML comment for `Testing.Test.Baz(int, int)'
// Line: 10
// Compiler options: -doc:dummy.xml -warn:4 -warnaserror

namespace Testing
{
	public class Test
	{
		/// <param name='i'>correct</param>
		public void Baz (int i, int j) {}
	}
}