[utils] Add check for ANDROID_UNIFIED_HEADERS to mono-compiler.h (#5742)
[mono.git] / mcs / errors / cs1570-4.cs
index 54fa63d47067ef908dfbfbaf9f947e2154e23443..0f50aff278a79a577122a31925a34d845495c535 100644 (file)
@@ -1,39 +1,16 @@
-// cs1570-4.cs: XML comment on `T:Testing.InterfaceTest2' has non-well-formed XML ('summary' is expected  Line 3, position 4.)
-// 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
 {
-       /// <summary>
-       /// comment for interface
-       /// </summary>
-       public interface InterfaceTest
-       {
-       }
-
-       /// <summary>
+       ///<summary>
        /// incorrect markup comment for interface
-       /// </incorrect>
+       ///</incorrect>
        public interface InterfaceTest2
        {
        }
-
-       /**
-               <summary>
-               Java style comment for interface
-               </summary>
-       */
-       public interface InterfaceTest3
-       {
-       }
-
-       public class Test
-       {
-               public static void Main ()
-               {
-               }
-       }
 }