mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vfmt: fix string interpolation formatting with multiple ',",\' and \" .
This commit is contained in:
@ -792,8 +792,8 @@ fn test_raw_with_quotes() {
|
||||
|
||||
fn test_escape() {
|
||||
a := 10
|
||||
println('\"$a')
|
||||
assert '\"$a' == '"10'
|
||||
println("\"$a")
|
||||
assert "\"$a" == '"10'
|
||||
}
|
||||
|
||||
fn test_atoi() {
|
||||
|
Reference in New Issue
Block a user