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

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

		/// comment for internal class
		public class InternalClass
		{
		}

		/// comment for internal struct
		public struct InternalStruct
		{
		}
	}
}