// Compiler options: -doc:dummy.xml -warn:1 -warnaserror using System; namespace Testing { /// /// comment for interface /// public interface InterfaceTest { } /// /// incorrect markup comment for interface /// public interface InterfaceTest2 { } /** Java style comment for interface */ public interface InterfaceTest3 { } public class Test { public static void Main () { } } }