fmt: keep char literal, ' (#11060)

This commit is contained in:
zakuro 2021-08-06 12:21:28 +09:00 committed by GitHub
parent b95224aa20
commit 490dec222f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 18 additions and 14 deletions

View file

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