(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / ilasm / tests / test-gen-meth-a.il
blob93536cabc6839490e7d88cd407e18fa616642655
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' { }
13 .class public T {
15         .method public static int32 Main ()
16         {
17                 .entrypoint
19                 ldc.i4.1
20                 ret
21         }
23         .method private static int32 M<I> ()
24         {
25                 ldc.i4.1
26                 ret
27         }