This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / ilasm / tests / test-gen-meth-a.il
1 //
2 // Define a generic method
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-gen-meth-a' { }
12
13 .class public T {
14
15         .method public static int32 Main ()
16         {
17                 .entrypoint
18
19                 ldc.i4.1
20                 ret
21         }
22
23         .method private static int32 M<I> ()
24         {
25                 ldc.i4.1
26                 ret
27         }
28 }
29