// CS1574: XML comment on `A' has cref attribute `ExecuteSilently' that could not be resolved // Line: 11 // Compiler options: -doc:dummy.xml -warnaserror /// public interface IExecutable { /// void ExecuteSilently (); } /// /// this is not allowed /// public class A : IExecutable { static void Main () { } /// void IExecutable.ExecuteSilently () { } }