// Compiler options: -doc:dummy.xml -warn:1 -warnaserror using System; namespace Testing { /// /// comment for struct /// public struct StructTest { } /// /// incorrect markup comment for struct /// public struct StructTest2 { } /** Java style commet */ public struct StructTest3 { } public class Test { public static void Main () { } } }