(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / ilasm / tests / test-24.il
blob7153cf383a505fb07bb232d94dfdf0493aef89f2
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 //
10 .assembly extern corlib { }
12 .namespace Mono.ILASM.Tests {
14         .field private static string global_string
16         .method private static void .cctor ()
17         {
18                 ldstr "PASS"
19                 stsfld string global_string
20                 ret
21         }
23         .method public static void Main ()
24         {
25                 .entrypoint
27                 ldsfld string global_string
29                 call void [mscorlib]System.Console::WriteLine (string)
31                 ret
32         }
33