Merge pull request #487 from mayerwin/patch-1
[mono.git] / mcs / errors / cs1570.cs
index b234e422f813ca1ec5c7c17b71fceda64c443ea9..52c439c95e77071a8284624707de20675106fba1 100644 (file)
@@ -1,35 +1,16 @@
-// cs1570.cs: XML comment on `T:Testing.Test2' has non-well-formed XML (unmatched closing element: expected summary but found incorrect  Line 3, position 12.)
-// Line: 22
+// CS1570: XML documentation comment on `Testing.Test2' is not well-formed XML markup ('summary' is expected  Line 3, position 4.)
+// Line: 12
 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
 
 using System;
 
 namespace Testing
 {
-       /// <summary>
-       /// comment on class
-       /// </summary>
-       public class Test
-       {
-               public static void Main ()
-               {
-               }
-       }
-
        /// <summary>
        /// Incorrect comment markup.
        /// </incorrect>
        public class Test2
        {
        }
-
-       /**
-               <summary>
-               another Java-style documentation style
-               </summary>
-       */
-       public class Test3
-       {
-       }
 }