1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

Revert "gen: scape string function in gen/str.v (#6452)"

This reverts commit 60fbcc37fc.
This commit is contained in:
Alexander Medvednikov
2020-09-24 18:19:18 +02:00
parent 60fbcc37fc
commit 403cd0d915
2 changed files with 5 additions and 97 deletions

View File

@@ -619,7 +619,7 @@ fn test_for_loop_two() {
fn test_quote() {
a := `'`
println("testing double quotes \"")
println("testing double quotes")
b := "hi"
assert b == 'hi'
assert a.str() == '\''