[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-301.cs
1 // Compiler options: -r:gtest-301-lib.dll
2
3 using System;
4
5 public class Test
6 {
7     [STAThread]
8     public static void Main (string[] args)
9     {
10         IShape shape;
11
12         object[] cargs = new object[1] { "Circle" };
13         shape = Factory<IShape>.CreateInstance (cargs);    
14     }
15
16     interface IShape
17     {
18     }
19 }
20