Fix monodis
[mono-project.git] / mono / dis / tests / gen-dump-method.cs
blobd49e323c94e93f1addff7ef4572fafb22e56b2c7
1 //Test for dumping method table for generic types and generic methods
2 //monodis --method
3 class a
5 void a_foo <U> (U u)
10 class g <T>
12 T foo2 (int i, T t)
14 return default (T);
17 T foo <U> (U u, int i)
19 return default (T);