// cs1570.cs: XML comment on 'F:Testing.Test.PrivateField2' has non-well-formed XML (unmatched closing element: expected summary but found incorrect Line 3, position 12.). // Line: 23 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror using System; namespace Testing { public class Test { public static void Main () { } /// /// comment for private field /// private string PrivateField; /// /// incorrect markup comment for private field /// private string PrivateField2; /** Javadoc comment for private field */ private string PrivateField3; } }