[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-343.cs
blob77e96f8bbf800cc14f3f671e61470641cdcf2bd0
1 using System;
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");
8 public static void Main () { Concat ("a", "b", "c"); }