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

cs1574-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eba9dbbf1869350d4e2fadc8554691600d2a3fcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// cs1574-7.cs: XML comment on `A' has cref attribute `ExecuteSilently' that could not be resolved
// Line: 11
// Compiler options: -doc:dummy.xml -warnaserror
/// <summary />
public interface IExecutable {
	/// <summary />
	void ExecuteSilently ();
}

/// <summary>
/// <see cref="ExecuteSilently">this is not allowed</see>
/// </summary>
public class A : IExecutable {
	static void Main () {
	}

	/// <summary />
	void IExecutable.ExecuteSilently () {
	}
}