Updated with review feedback.
[mono.git] / mcs / errors / cs8077.cs
1 // CS8077: A single-line comment may not be used in an interpolated string
2 // Line: 8
3
4 public class Test
5 {
6         public static int Main ()
7         {
8                 var s = $"test { arg // comment }";
9         }
10 }