[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-895.cs
blobbef7982680cbebdda88100e49e8c6fd45e656cda
1 using System;
3 class X
5 public void Test (int g, out int results)
7 if ((results = Foo (g > 0 ? 1 : 2)) != 4)
9 Console.WriteLine (results);
13 int Foo (object o)
15 return 4;
18 public static void Main ()