5 public static int Main ()
7 dynamic index
= (uint) int.MaxValue
+ 1;
8 dynamic array
= new int[] { 1, 2 }
;
11 var a
= array
[index
];
13 } catch (System
.OverflowException
) {
17 array
[ulong.MaxValue
] = 1;
19 } catch (System
.OverflowException
) {