Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1570-3.cs
1 // CS1570: XML documentation comment on `Testing.StructTest2' 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.)
2 // Line: 10
3 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror
4
5 namespace Testing
6 {
7         ///<summary> 
8         /// incorrect markup comment for struct
9         ///</incorrect>
10         public struct StructTest2
11         {
12         }
13 }
14