* roottypes.cs: Rename from tree.cs.
[mono.git] / mono / dis / tests / gen-dump-method.cs
1 //Test for dumping method table for generic types and generic methods
2 //monodis --method 
3 class a 
4 {
5         void a_foo <U> (U u)
6         {
7         }
8 }
9
10 class g <T>
11 {
12         T foo2 (int i, T t)
13         {
14                 return default (T);
15         }
16         
17         T foo <U> (U u, int i)
18         {
19                 return default (T);
20         }
21 }