New test.
[mono.git] / mcs / tests / test-xml-007.cs
1 // Compiler options: -doc:xml-007.xml
2 using System;
3
4 namespace Testing
5 {
6         /// <summary>
7         /// comment for delegate type
8         /// </summary>
9         public delegate void MyDelegate (object o, EventArgs e);
10
11         /// <summary>
12         /// comment for delegate type
13         /// </incorrect>
14         public delegate void MyDelegate2 (object o, EventArgs e);
15
16         /**
17         <summary>
18         Javadoc comment for delegate type
19         </summary>
20         */
21         public delegate void MyDelegate3 (object o, EventArgs e);
22
23         public class Test
24         {
25                 public static void Main ()
26                 {
27                 }
28         }
29 }
30