Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1570-10.cs
1 // CS1570: XML documentation comment on `Testing.Test.PrivateField2' is not well-formed XML markup (The 'summary' start tag on line 1 position 3 does not match the end tag of 'incorrect'. Line 3, position 4.)
2 // Line: 23
3 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror
4
5 using System;
6
7 namespace Testing
8 {
9         public class Test
10         {
11                 public static void Main ()
12                 {
13                 }
14
15                 /// <summary>
16                 /// comment for private field
17                 /// </summary>
18                 private string PrivateField;
19
20                 /// <summary>
21                 /// incorrect markup comment for private field
22                 /// </incorrect>
23                 private string PrivateField2;
24
25                 /**
26                 <summary>
27                 Javadoc comment for private field
28                 </summary>
29                 */
30                 private string PrivateField3;
31         }
32 }
33