[arm64] Add the full neon regs to the context
[mono.git] / mcs / tests / gtest-360.cs
1 class C
2 {
3         internal static int Foo<T> (T name, params object [] args)
4         {
5                 return 2;
6         }
7         
8         internal static int Foo (string name, params object [] args)
9         {
10                 return 0;
11         }
12         
13         internal static int InvokeMethod (string name, params object [] args)
14         {
15                 return Foo (name, args);
16         }
17         
18         public static int Main ()
19         {
20                 return InvokeMethod ("abc");
21         }
22
23 }