X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=mcs%2Ferrors%2Fcs1570-8.cs;h=bec54e186f259fbfc37e7696829b19e7efa0ac05;hb=afd9c96b3f5c432a8d337dc134a59e09fa405a9a;hp=c2e6205abe7aace5506edd71ab9be7755050d418;hpb=c39d7ce9985a7067c1cbf44188007c9433901940;p=mono.git diff --git a/mcs/errors/cs1570-8.cs b/mcs/errors/cs1570-8.cs index c2e6205abe7..bec54e186f2 100644 --- a/mcs/errors/cs1570-8.cs +++ b/mcs/errors/cs1570-8.cs @@ -1,4 +1,4 @@ -// cs1570-8.cs: XML comment on `F:Testing.Test.Constant2' has non-well-formed XML ('summary' is expected Line 3, position 4.) +// CS1570: XML documentation comment on `Testing.Test.Constant2' is not well-formed XML markup (The 'summary' start tag on line 1 position 3 does not match the end tag of 'invalid'. Line 3, position 4.) // Line: 19 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror @@ -8,26 +8,10 @@ namespace Testing { public class Test { - /// - /// comment for const declaration - /// - const string Constant = "CONSTANT STRING"; - /// /// invalid comment for const declaration /// const string Constant2 = "CONSTANT STRING"; - - /** - - Javaism comment for const declaration - - */ - const string Constant3 = "CONSTANT STRING"; - - public static void Main () - { - } } }