[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-711.cs
1 using System;
2
3 namespace N
4 {
5         enum FieldType
6         {
7                 Foo
8         }
9 }
10
11 namespace N
12 {
13         class Test
14         {
15                 public FieldType FieldType = FieldType.Foo;
16
17                 public Test ()
18                 {
19                 }
20
21                 public Test (int i)
22                 {
23                 }
24
25                 public static void Main ()
26                 {
27                 }
28         }
29 }