"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs1574-7.cs
blob4d6cbb8a715db569336fde1db670426a9a84948a
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 ();
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 () {