Merge pull request #487 from mayerwin/patch-1
[mono.git] / mcs / tests / test-343.cs
1 using System;
2
3 class X {
4         static void Concat (string s1, string s2, string s3) { }
5         static void Concat (params string [] ss) {
6                 throw new Exception ("Overload resolution failed");
7         }
8         public static void Main () { Concat ("a", "b", "c"); }
9 }