2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / ilasm / tests / test-comment-a.il
1 //
2 // Test to make sure comments are being handled properly
3 //
4 // Author(s):
5 //  Jackson Harper (jackson@ximian.com)
6 //
7 // (C) 2003 Ximian, Inc (http://www.ximian.com)
8 //
9
10 .assembly extern mscorlib { }
11 .assembly 'test-comment-a' { }
12
13
14 .class public T {
15
16         .method public static int32 Main ()
17         {
18                 .entrypoint
19
20                 ldc.i4.0
21
22                 // ldc.i4.1
23                 /**/ 
24                 /* ldc.i4.1     */
25                 /*
26                 ldc.i4.1
27                 */
28
29                 /*
30                 //
31                 */
32                 
33                 ret
34         }
35
36 }
37
38