[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1570-8.cs
index c2e6205abe7aace5506edd71ab9be7755050d418..bec54e186f259fbfc37e7696829b19e7efa0ac05 100644 (file)
@@ -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
        {
-               /// <summary>
-               /// comment for const declaration
-               /// </summary>
-               const string Constant = "CONSTANT STRING";
-
                /// <summary>
                /// invalid comment for const declaration
                /// </invalid>
                const string Constant2 = "CONSTANT STRING";
-
-               /**
-               <summary>
-               Javaism comment for const declaration
-               </summary>
-               */
-               const string Constant3 = "CONSTANT STRING";
-
-               public static void Main ()
-               {
-               }
        }
 }