Merge pull request #4928 from kumpera/ptr_to_struct_intrinsic
[mono.git] / mcs / tests / gtest-371-lib.cs
1 // Compiler options: -t:library
2
3 public class Test<A,B>
4 {
5         public void Foo<U> (U u)
6         { }
7
8         public void Foo<V> (V[] v, V w)
9         { }
10
11         public void Hello<V,W> (V v, W w, Test<V,W> x)
12         { }
13
14         public void ArrayMethod<V> (params V[] args)
15         { }
16 }