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

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

// Test invalid CS0108 warning for enum member hiding

enum E
{
	Format
}

class B
{
	public static void Main ()
	{
	}
}