Merge all static runtime libs into libmono-static.
[mono.git] / mcs / tests / test-683.cs
1 using System;
2 using SizeType = System.UInt64;
3
4 public class broken_cast
5 {
6         public static int Main ()
7         {
8                 SizeType m = 1;
9                 SizeType i = 1;
10                 SizeType [] n = new SizeType [2] { 7, 8 };
11                 m = m * n [i];
12                 return 0;
13         }
14 }