[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-731.cs
1 using System;
2
3 // Static array initializers test
4
5 enum S
6 {
7         Foo = 5
8 }
9
10 class C
11 {
12         public static int Main ()
13         {
14                 S[] s = new S [] { S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo };
15                 Console.WriteLine (s [5]);
16                         
17                 return 0;
18         }
19 }