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

gtest-436.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53e5396fa858f1e3e83ee85a4686c03f3fadbf48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public enum AnEnum
{
	value1,
	value2
}

class SomeClass
{
	public static int Main ()
	{
		if (AnEnum.value1 != null) {
			return 0;
		}

		return 1;
	}
}