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

test-xml-032.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 30ce28bb29b86f1acad7164de7d0da61d1d11518 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Compiler options: -doc:xml-032.xml -warn:4 -warnaserror
using System;

class Test
{
	/// <exception cref="ArgumentNullException"><paramref name="wrongref" /> is <see langword="null" />.</exception>
	/// <exception cref="ArgumentOutOfRangeException"><paramref name="wrongRefAgain" /> is a zero-length <see cref="string" />.</exception>
	protected Test(string name) 
	{
	}

	static void Main () {}
}