Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / test-interpolation-04.cs
1 using System;
2
3 public static class Test
4 {
5         public static int Main ()
6         {
7                 string s;
8                 s = $"T {  "v"    }";
9                 if (s != "T v")
10                         return 1;
11
12                 s = $"T {  "v" + "2"  }";
13                 if (s != "T v2")
14                         return 2;
15
16                 return 0;
17         }
18 }