[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-101.cs
1 using System;
2
3 public class Test
4 {
5         public static void Main ()
6         {
7                 SimpleStruct <string> s = new SimpleStruct <string> ();
8         }
9 }
10
11 public struct SimpleStruct <T>
12 {
13         T data;
14
15         public SimpleStruct (T data)
16         {
17                 this.data = data;
18         }
19 }