// cs1570-6.cs: XML comment on `T:Testing.MyDelegate2' has non-well-formed XML ('summary' is expected Line 3, position 4.) // Line: 17 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror using System; namespace Testing { /// /// comment for delegate type /// public delegate void MyDelegate (object o, EventArgs e); /// /// comment for delegate type /// public delegate void MyDelegate2 (object o, EventArgs e); /** Javadoc comment for delegate type */ public delegate void MyDelegate3 (object o, EventArgs e); public class Test { public static void Main () { } } }