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

test-529.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5d74cbee732225607912be49a9788eb7ccf811f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class C
{
	enum E
	{
		A
	}
	
	public static void Main ()
	{
		int i;
		i = sizeof (int);
		i = sizeof(E);
		i = sizeof(decimal);
	}
}