// cs1570.cs: XML comment on `T:Testing.Test2' has non-well-formed XML ('summary' is expected Line 3, position 4.) // Line: 22 // Compiler options: -doc:dummy.xml -warnaserror -warn:1 using System; namespace Testing { /// /// comment on class /// public class Test { public static void Main () { } } /// /// Incorrect comment markup. /// public class Test2 { } /** another Java-style documentation style */ public class Test3 { } }