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

test-596.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad4b26771e069c48177bf280296d5ff7b4a701dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

enum E
{
	A
}

class C
{
	public static void Main ()
	{
		E dt = E.A;
		IntPtr ip = (IntPtr)dt;
		ip = (IntPtr)E.A;
	}
}