linux-packaging-mono/mcs/tests/test-interpolation-09.cs

17 lines
224 B
C#
Raw Normal View History

using System;
class EscapedQuotedInterpolatedFormatSpecifier
{
public static int Main ()
{
string ss = "ss";
var t = $@"\4{ss:\u007B}\5";
Console.WriteLine (t);
if (t != @"\4ss\5")
return 1;
return 0;
}
}