[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-interpolation-04.cs
blob850f22b06b29095a312ae729ba4cfb935b263f6f
1 using System;
3 public static class Test
5 public static int Main ()
7 string s;
8 s = $"T { "v" }";
9 if (s != "T v")
10 return 1;
12 s = $"T { "v" + "2" }";
13 if (s != "T v2")
14 return 2;
16 return 0;