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

cs1571.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a7a4b2d124a68ee52d5bfe629ae7fb7e03f5042c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// cs1571.cs: XML comment on `Testing.Test.Bar(int)' has a duplicate param tag for `i'
// Line: 18
// Compiler options: -doc:dummy.xml -warn:2 -warnaserror

namespace Testing
{
	public class Test
	{
		public static void Main ()
		{
		}

		/// <param>anonymous</param>
		public void Foo (int i) {}

		/// <param name='i'>correct</param>
		/// <param name='i'>duplicate</param>
		public void Bar (int i) {}
	}
}