Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs8088.cs
1 // CS8088: A interpolated expression format specifier may not contain trailing whitespace
2 // Line: 9
3
4 public class Test
5 {
6         public static int Main ()
7         {
8                 int v = 0;
9                 var s = $"{v:X }";
10         }
11 }