Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / dis / tests / gen-type.cs
1 // Test for a MemberRef with a TypeSpec parent
2
3 class g<T>
4 {
5         public void foo <A> (A _a)
6         {
7         }
8 }
9
10 class test {
11         public static void Main ()
12         {
13                 g<int> _g = new g<int> ();
14                 _g.foo ("abc");
15         }
16 }