Merge pull request #3522 from henricm/fix-csharp-compiler-path-windows
[mono.git] / mcs / ilasm / tests / test-1.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 mscorlib { }
10
11 //
12 // Declare a namespace, a class, and a method
13 //
14
15 .namespace Mono.ILASM.Tests {
16
17         .class public auto ansi Test_1 extends [mscorlib]System.Object {
18
19                 .method public static void check(string) cil managed {
20                         .entrypoint
21                         .maxstack 1     
22
23                         nop                     
24                 }               
25         }
26 }
27