[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-809.cs
blob3c2d5c2573b1bf96b2a6a93b860a7de136e38f7d
1 using System;
3 class Z
5 public static int Main()
7 char x = '●';
8 string s = "●";
9 if (x != 9679)
10 return 1;
12 if (s.Length != 1)
13 return 2;
15 Console.WriteLine (s);
16 return 0;