[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-424.cs
blob815df52265eb28f3880705af82f851c135ec2c5b
1 using System;
3 class C
5 public static int Main ()
7 const string s = "oups";
8 if (s.Length != 4) {
9 Console.WriteLine (s.Length);
10 return 2;
13 return 0;