a632333cc7
Former-commit-id: 6427cc082e74df30afc535fd906a3494b74b0817
17 lines
224 B
C#
17 lines
224 B
C#
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;
|
|
}
|
|
}
|