[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-interpolation-09.cs
blob9373e79cbf2cfe00656eaf9d1a055b4e3f89d4f3
1 using System;
3 class EscapedQuotedInterpolatedFormatSpecifier
5 public static int Main ()
7 string ss = "ss";
8 var t = $@"\4{ss:\u007B}\5";
10 Console.WriteLine (t);
11 if (t != @"\4ss\5")
12 return 1;
14 return 0;