summaryrefslogtreecommitdiff
path: root/mcs/tests/test-xml-016.cs
blob: 13fbe510256efbbb94bfb5ee3aff607122ff7991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Compiler options: -doc:xml-016.xml
using System;

namespace Testing
{
	public class Test
	{
		public static void Main ()
		{
		}

		/// <summary>
		/// public event EventHandler MyEvent
		/// </summary>
		public event EventHandler MyEvent;

		/// private event EventHandler MyEvent; without markup - it is OK.
		private event EventHandler MyEvent2;
	}
}