[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / gtest-implicitarray-02.cs
blobef70f82490dd5aedfcadfb169ca5feefc77534df
1 class MyString
3 public static implicit operator string (MyString s)
5 return "ggtt";
9 public class Test
11 public static int Main ()
13 var v = new [] { new MyString (), "a" };
14 if (v [0] != "ggtt")
15 return 1;
16 return 0;