[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-readonly-03.cs
blob14cb958b41a2acbb06fd53717c43b511dba07524
1 // Compiler options: -langversion:latest
2 using System;
4 readonly struct S
6 static S shared = new S ();
8 public S (int arg)
10 this = shared;
13 public static void Main ()