[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs1570-6.cs
1 // CS1570: XML documentation comment on `Testing.MyDelegate2' 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: 12
3 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror
4
5 using System;
6
7 namespace Testing
8 {
9         /// <summary>
10         /// comment for delegate type
11         /// </incorrect>
12         public delegate void MyDelegate2 (object o, EventArgs e);
13 }
14