[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / dtest-026.cs
blob09790ed23b733a95516697a750785ae7e943ed2b
1 // Dynamic and value types
3 struct S
5 public int Value;
8 class C
10 static dynamic f;
12 public static int Main ()
14 f = new S ();
15 f.Value = 5;
16 if (f.Value != 5)
17 return 1;
19 return 0;