mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-05-12 12:51:13 -03:00
17 lines
458 B
Plaintext
17 lines
458 B
Plaintext
# SyntaxError: f-string expression part cannot include a backslash
|
|
|
|
---input---
|
|
f"{\"quoted string\"}"
|
|
|
|
---tokens---
|
|
'f' Literal.String.Affix
|
|
'"' Literal.String.Double
|
|
'{' Literal.String.Interpol
|
|
'\\' Error
|
|
'"' Literal.String.Double
|
|
'quoted string' Literal.String.Double
|
|
'\\"' Literal.String.Escape
|
|
'}' Literal.String.Double
|
|
'"' Literal.String.Double
|
|
'\n' Text.Whitespace
|