Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs8089.cs
1 // CS8089: Empty interpolated expression format specifier
2 // Line: 8
3
4 public class Test
5 {
6         public static int Main ()
7         {
8                 int v = 0;
9                 var s = $"{v:}";
10         }
11 }