Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs1574-7.cs
1 // CS1574: 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 ();
8 }
9
10 /// <summary>
11 /// <see cref="ExecuteSilently">this is not allowed</see>
12 /// </summary>
13 public class A : IExecutable {
14         static void Main () {
15         }
16
17         /// <summary />
18         void IExecutable.ExecuteSilently () {
19         }
20 }
21