blob: 4d6cbb8a715db569336fde1db670426a9a84948a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// CS1574: 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 () {
}
}
|