Setup status and scheduler correctly when calling RunSynchronously on a Task
[mono.git] / mcs / ilasm / tests / test-20.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         .method public static void global_method () {
14                 ldstr "PASS"
15                 call void [corlib]System.Console::WriteLine (string)
16                 ret
17         }
18         
19         .class public auto ansi Test_20 extends [corlib]System.Object {
20
21                .method public static void check( ) cil managed {
22                        .entrypoint
23                        call void global_method ()
24                        ret
25                }
26                 
27         }
28
29 }