Add a test.
[mono.git] / mono / tests / verifier / valid_merge_boxed_type.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;
8                 o = args == null ? new object () : (object)1;
9                 return 1;
10         }
11 }