mcs/error recovery: handle errors caused by closing braces after a statement expressi...
[mono.git] / mcs / errors / cs1570-3.cs
index 442801a6dcfd2c46823e4a9298c0653310a42df9..9a949509b611a1735d57f93253018dbc0c8b2cc9 100644 (file)
@@ -1,39 +1,14 @@
-// cs1570-3.cs: XML comment on `T:Testing.StructTest2' has non-well-formed XML ('summary' is expected  Line 3, position 4.)
-// Line: 19
+// CS1570: XML documentation comment on `Testing.StructTest2' is not well-formed XML markup ('summary' is expected  Line 3, position 4.)
+// Line: 10
 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror
 
-using System;
-
 namespace Testing
 {
-       /// <summary> 
-       /// comment for struct
-       /// </summary>
-       public struct StructTest
-       {
-       }
-
        /// <summary> 
        /// incorrect markup comment for struct
        /// </incorrect>
        public struct StructTest2
        {
        }
-
-       /**
-               <summary>
-               Java style commet
-               </summary>
-       */
-       public struct StructTest3
-       {
-       }
-
-       public class Test
-       {
-               public static void Main ()
-               {
-               }
-       }
 }