Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / bound.cs
1 using System;
2
3 public class Bound {
4         public static int Main () {
5
6                 try {
7                         
8                         byte [] b = new byte [0];
9                         b [0] = 128;
10                         return 1;
11                 } catch {
12                         return 0;
13                 }
14                 return 0;
15         }
16 }
17