Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / verifier / valid_merge_boxed_type_2.cs
1 using System;
2 using System.Reflection;
3 using System.Reflection.Emit;
4
5 class Driver {
6         public static int Main (string[] args) {
7                 object[] o = new object[10];
8                 o[5] = args == null ? (object)1 :  new object ();
9                 return 1;
10         }
11 }