[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / ilasm / tests / test-22.il
1 //
2 // Mono.ILASM.Tests
3 //
4 // Author(s):
5 //  Jackson Harper (Jackson@LatitudeGeo.com)
6 //
7 // (C) 2003 Jackson Harper, All rights reserved
8 //
9 .assembly extern corlib { }
10
11 .namespace Mono.ILASM.Tests {
12
13         .field public static string global_field = "jackson"
14
15         .class public auto ansi Test_22 extends [corlib]System.Object {
16
17                .method public static void check( ) cil managed {
18                        .entrypoint
19                        
20                        ldfld string global_field
21                        call void [corlib]System.Console::WriteLine (string)
22                        
23                        ret
24                }
25                 
26         }
27
28 }