[utils] Add check for ANDROID_UNIFIED_HEADERS to mono-compiler.h (#5742)
[mono.git] / mcs / errors / cs8076.cs
1 // CS8076: Missing close delimiter `}' for interpolated expression
2 // Line: 8
3
4 public class Test
5 {
6         public static int Main ()
7         {
8                 var s = $"test { arg ";
9         }
10 }