[w32file] Move MonoIO.Find{First,Next,Close} to managed
[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 }