Merge pull request #439 from mono-soc-2012/garyb/iconfix
[mono.git] / mcs / tests / test-850.cs
1 class C
2 {
3         public static int Main ()
4         {
5                 if (F ("x") != 1)
6                         return 1;
7
8                 return 0;
9         }
10
11         static int F (string s, params string[] strings)
12         {
13                 return 1;
14         }
15
16         static int F (params string[] strings)
17         {
18                 return 2;
19         }
20 }