// 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 { } }