[xBuild] Support use of properties defined in Choose elements in project references
[mono.git] / mcs / errors / cs1570-3.cs
1 // CS1570: XML documentation comment on `Testing.StructTest2' is not well-formed XML markup ('summary' is expected  Line 3, position 4.)
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