[xbuild] Fix bug #676671. Raise AnyEvent .
[mono.git] / mcs / errors / cs1570-6.cs
1 // cs1570-6.cs: XML comment on `T:Testing.MyDelegate2' has non-well-formed XML ('summary' is expected  Line 3, position 4.)
2 // Line: 17
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         /// </summary>
12         public delegate void MyDelegate (object o, EventArgs e);
13
14         /// <summary>
15         /// comment for delegate type
16         /// </incorrect>
17         public delegate void MyDelegate2 (object o, EventArgs e);
18
19         /**
20         <summary>
21         Javadoc comment for delegate type
22         </summary>
23         */
24         public delegate void MyDelegate3 (object o, EventArgs e);
25
26         public class Test
27         {
28                 public static void Main ()
29                 {
30                 }
31         }
32 }
33