[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / dtest-052-lib.cs
1 // Compiler options: -t:library
2
3 public interface IG<T>
4 {
5         T Value { get; }
6 }
7
8 public class DynamicReference
9 {
10         public IG<dynamic> DynType;
11         public IG<dynamic[][]> DynArray;
12 }