2005-06-16 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / errors / cs1570-3.cs
1 // cs1570.cs: XML comment on 'T:Testing.StructTest2' has non-well-formed XML (unmatched closing element: expected summary but found incorrect  Line 3, position 12.).
2 // Line: 19
3 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror
4
5 using System;
6
7 namespace Testing
8 {
9         /// <summary> 
10         /// comment for struct
11         /// </summary>
12         public struct StructTest
13         {
14         }
15
16         /// <summary> 
17         /// incorrect markup comment for struct
18         /// </incorrect>
19         public struct StructTest2
20         {
21         }
22
23         /**
24                 <summary>
25                 Java style commet
26                 </summary>
27         */
28         public struct StructTest3
29         {
30         }
31
32         public class Test
33         {
34                 public static void Main ()
35                 {
36                 }
37         }
38 }
39