2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1574-7.cs
blobeba9dbbf1869350d4e2fadc8554691600d2a3fcb
1 // cs1574-7.cs: XML comment on `A' has cref attribute `ExecuteSilently' that could not be resolved
2 // Line: 11
3 // Compiler options: -doc:dummy.xml -warnaserror
4 /// <summary />
5 public interface IExecutable {
6 /// <summary />
7 void ExecuteSilently ();
10 /// <summary>
11 /// <see cref="ExecuteSilently">this is not allowed</see>
12 /// </summary>
13 public class A : IExecutable {
14 static void Main () {
17 /// <summary />
18 void IExecutable.ExecuteSilently () {