Update ui test suite to nightly-2024-10-31

This commit is contained in:
David Tolnay 2024-10-30 19:18:57 -07:00
parent 86d933cfd7
commit 42ab31feac
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
error: no rules expected the token `"2"`
error: no rules expected `"2"`
--> tests/ui/missing_comma.rs:4:21
|
4 | json!({ "1": "" "2": "" });

View File

@ -1,4 +1,4 @@
error: no rules expected the token `~`
error: no rules expected `~`
--> tests/ui/parse_expr.rs:4:19
|
4 | json!({ "a" : ~ });

View File

@ -1,4 +1,4 @@
error: no rules expected the token `=>`
error: no rules expected `=>`
--> tests/ui/unexpected_after_array_element.rs:4:18
|
4 | json!([ true => ]);

View File

@ -1,4 +1,4 @@
error: no rules expected the token `=>`
error: no rules expected `=>`
--> tests/ui/unexpected_after_map_entry.rs:4:23
|
4 | json!({ "k": true => });

View File

@ -1,4 +1,4 @@
error: no rules expected the token `:`
error: no rules expected `:`
--> tests/ui/unexpected_colon.rs:4:13
|
4 | json!({ : true });

View File

@ -1,4 +1,4 @@
error: no rules expected the token `,`
error: no rules expected `,`
--> tests/ui/unexpected_comma.rs:4:17
|
4 | json!({ "a" , "b": true });