X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs1570-4.cs;h=0f50aff278a79a577122a31925a34d845495c535;hb=d8be0899640d040272eb77b8749275a41a3d103a;hp=69d72c96bed7ba4a4cac2ff66565059b841d5932;hpb=7e18ed47c9606f3981e7b18cbc238d6781843153;p=mono.git diff --git a/mcs/errors/cs1570-4.cs b/mcs/errors/cs1570-4.cs index 69d72c96bed..0f50aff278a 100644 --- a/mcs/errors/cs1570-4.cs +++ b/mcs/errors/cs1570-4.cs @@ -1,39 +1,16 @@ -// cs1570-4.cs: XML comment on `T:Testing.InterfaceTest2' has non-well-formed XML (unmatched closing element: expected summary but found incorrect Line 3, position 12.) -// Line: 19 +// CS1570: XML documentation comment on `Testing.InterfaceTest2' is not well-formed XML markup (The 'summary' start tag on line 1 position 2 does not match the end tag of 'incorrect'. Line 3, position 3.) +// Line: 12 // 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 () - { - } - } }