[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-readonly-01.cs
blob7cce9e0d6002d1c6786bdf321ee3f429163d25d7
1 // Compiler options: -langversion:latest
3 using System;
5 readonly struct S
7 readonly int field;
9 static int sf;
10 static event Action e;
11 static int Prop { get; set; }
13 public static void Main ()