eol
[mcs.git] / tests / test-683.cs
blob351e82cd7babee2dd153d60b87c968a9a0f1277a
1 using System;
2 using SizeType = System.UInt64;
4 public class broken_cast
6 public static int Main ()
8 SizeType m = 1;
9 SizeType i = 1;
10 SizeType [] n = new SizeType [2] { 7, 8 };
11 m = m * n [i];
12 return 0;