merge -r 60439:60440
[mono.git] / mcs / errors / cs1570.cs
1 // cs1570.cs: XML comment on `T:Testing.Test2' has non-well-formed XML ('summary' is expected  Line 3, position 4.)
2 // Line: 22
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
4
5 using System;
6
7 namespace Testing
8 {
9         /// <summary>
10         /// comment on class
11         /// </summary>
12         public class Test
13         {
14                 public static void Main ()
15                 {
16                 }
17         }
18
19         /// <summary>
20         /// Incorrect comment markup.
21         /// </incorrect>
22         public class Test2
23         {
24         }
25
26         /**
27                 <summary>
28                 another Java-style documentation style
29                 </summary>
30         */
31         public class Test3
32         {
33         }
34 }
35