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

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

namespace Testing
{
	/// <summary>
	/// comment for enum type
	/// </incorrect>
	enum EnumTest2
	{
		Foo,
		Bar,
	}
}