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

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

enum DT : byte {
	Foop
}

public class Foo
{
	public static void Main ()
	{
		DT dt;
		dt = (DT) byte.Parse ("123");
		dt = (DT) decimal.Parse ("123");
	}
}