// cs1570-8.cs: XML comment on `F:Testing.Test.Constant2' has non-well-formed XML ('summary' is expected Line 3, position 4.) // Line: 19 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror using System; namespace Testing { public class Test { /// /// comment for const declaration /// const string Constant = "CONSTANT STRING"; /// /// invalid comment for const declaration /// const string Constant2 = "CONSTANT STRING"; /** Javaism comment for const declaration */ const string Constant3 = "CONSTANT STRING"; public static void Main () { } } }