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

string: enable test for string escaping (#6688)

This commit is contained in:
Swastik Baranwal 2020-10-27 19:55:44 +05:30 committed by GitHub
parent 36c5eab799
commit 0c987f433d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -760,9 +760,9 @@ fn test_raw_with_quotes() {
}
fn test_escape() {
// TODO
//a := 10
//println("\"$a")
a := 10
println("\"$a")
assert "\"$a" == "\"10"
}
fn test_atoi() {