Merge pull request #5636 from BrzVlad/fix-xmm-scan
[mono.git] / mcs / tests / gtest-optional-37.cs
1 using System;
2
3 class Test1
4 {
5         static object Foo (int arg = 1, int arg2 = 2)
6         {
7                 return null;
8         }
9
10         static object Foo (object arg, object arg2)
11         {
12                 return null;
13         }
14
15         public static void Main ()
16         {
17                 Func<int, int, object> o = Foo;
18         }
19 }