We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1000ada commit 0e4078fCopy full SHA for 0e4078f
1 file changed
vlib/v/scanner/scanner_test.v
@@ -151,16 +151,13 @@ fn test_ref_ref_array_ref_ref_foo() {
151
}
152
153
fn test_escape_rune() {
154
- // these lines work if the v compiler is working
155
- // will not work until v compiler on github is updated
156
- // assert `\x61` == `a`
157
- // assert `\u0061` == `a`
158
- // assert `\U00000061` == `a`
159
-
160
- // will not work until PR is accepted
161
- // assert `\141` == `a`
162
- // assert `\xe2\x98\x85` == `★`
163
- // assert `\342\230\205` == `★`
+ assert `\x61` == `a`
+ assert `\u0061` == `a`
+ assert `\U00000061` == `a`
+
+ assert `\141` == `a`
+ assert `\xe2\x98\x85` == `★`
+ assert `\342\230\205` == `★`
164
165
// the following lines test the scanner module
166
// even before it is compiled into the v executable
0 commit comments