Apply changes from https://github.com/dotnet/runtime/commit/eb1756e97d23df13bc6fe798e...
[mono-project.git] / mono / tests / bound.cs
blobda11ae961e1660c802e4a6e5524945f5b6209953
1 using System;
3 public class Bound {
4 public static int Main () {
6 try {
8 byte [] b = new byte [0];
9 b [0] = 128;
10 return 1;
11 } catch {
12 return 0;
14 return 0;