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

cs1580.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9c2c6f912865751d6ad3db10645cb1f3167162d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1580.cs: Invalid type for parameter `1' in XML comment cref attribute `Foo(x)'
// Line: 7
// Compiler options: -doc:dummy.xml -warnaserror -warn:1

using System;
/// <seealso cref="Foo(x)"/>
public class Test
{
	int Foo ()
	{
		return 0;
	}
}