[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1570-6.cs
blobcec74ba11f5f6a3843b551751d96843d10ba9c1e
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
5 using System;
7 namespace Testing
9 /// <summary>
10 /// comment for delegate type
11 /// </incorrect>
12 public delegate void MyDelegate2 (object o, EventArgs e);