summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1574-10.cs
blob: e39b42e5ca705c29df223715a3f4b55cfa1b43b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1574: XML comment on `C.MM()' has cref attribute `int(int)' that could not be resolved
// Line: 8
// Compiler options: -doc:dummy.xml -warnaserror

class C
{
	/// <returns>A <see cref="int(int)" />.</returns>
	void MM ()
	{
	}
}