Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / test-xml-016.cs
1 // Compiler options: -doc:xml-016.xml
2 using System;
3
4 namespace Testing
5 {
6         public class Test
7         {
8                 public static void Main ()
9                 {
10                 }
11
12                 /// <summary>
13                 /// public event EventHandler MyEvent
14                 /// </summary>
15                 public event EventHandler MyEvent;
16
17                 /// private event EventHandler MyEvent; without markup - it is OK.
18                 private event EventHandler MyEvent2;
19         }
20 }
21