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

test-97.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32dc9d5ec467b9071267db7a4fbd9c0d6399dbf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// This test excercises the simple name lookups on
// unfinished enumerations.
//

public enum FL { 
	EMPTY = 0, 
	USHIFT = 11, 
	USER0 = (1<<(USHIFT+0)),
}

class X {

	public static int Main ()
	{
		return 0;
	}
}