Merge pull request #4381 from BrzVlad/feature-generational-hash
[mono.git] / mono / tests / verifier / valid_stelem_ref_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 = new object[10];
8                 o[5] = args == null ? (object)1 :  new object ();
9                 return 1;
10         }
11 }