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

test-600.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 608c588a4e09d1f85d8260e8efa6c3c5634dbf97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;

namespace Test
{
	enum Key_byte : byte { A = 1}
	enum Key_ulong : ulong { A = 1}

	class Regression
	{
		public static int Main()
		{
			IntPtr a = new IntPtr (1);
			UIntPtr b = new UIntPtr (1);
			Key_byte k1 = (Key_byte)a;
			Key_byte k2 = (Key_byte)b;
			
			if (k1 != Key_byte.A)
				return 1;
				
			if (k2 != Key_byte.A)
				return 2;
				
			Key_ulong k1_u = (Key_ulong)a;
			Key_ulong k2_u = (Key_ulong)b;

			if (k1_u != Key_ulong.A)
				return 1;
				
			if (k2_u != Key_ulong.A)
				return 2;

			return 0;
		}
	}
}