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

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

public class broken_cast
{
	public static int Main ()
	{
		SizeType m = 1;
		SizeType i = 1;
		SizeType [] n = new SizeType [2] { 7, 8 };
		m = m * n [i];
		return 0;
	}
}