Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-xml-072.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a160b23838f40086c936ad3d4c6cacd2b2328c55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Compiler options: -doc:xml-072.xml

class X
{
	/// <summary>
	/// Top-class
	/// </summary>
	public sealed class C
	{
		public string Severity => "foo";

		/// <summary>
		/// foo
		/// </summary>
		public static void Main() {}
	}
}