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

using System;

/// <see cref="Test.Foo(int)"/> Test has Foo, but is property that has no args.
public class Test
{
	string Foo {
		get { return null; }
	}
}