mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-23 01:18:02 +00:00
Ui test changes for trybuild 1.0.49
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
error: failed to parse borrowed lifetimes: "zzz"
|
||||
--> $DIR/tests/ui/borrow/bad_lifetimes.rs:5:22
|
||||
--> tests/ui/borrow/bad_lifetimes.rs:5:22
|
||||
|
|
||||
5 | #[serde(borrow = "zzz")]
|
||||
| ^^^^^
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
error: duplicate borrowed lifetime `'a`
|
||||
--> $DIR/tests/ui/borrow/duplicate_lifetime.rs:5:22
|
||||
--> tests/ui/borrow/duplicate_lifetime.rs:5:22
|
||||
|
|
||||
5 | #[serde(borrow = "'a + 'a")]
|
||||
| ^^^^^^^^^
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
error: duplicate serde attribute `borrow`
|
||||
--> $DIR/tests/ui/borrow/duplicate_variant.rs:8:13
|
||||
--> tests/ui/borrow/duplicate_variant.rs:8:13
|
||||
|
|
||||
8 | #[serde(borrow)]
|
||||
| ^^^^^^
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
error: at least one lifetime must be borrowed
|
||||
--> $DIR/tests/ui/borrow/empty_lifetimes.rs:5:22
|
||||
--> tests/ui/borrow/empty_lifetimes.rs:5:22
|
||||
|
|
||||
5 | #[serde(borrow = "")]
|
||||
| ^^
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
error: field `s` has no lifetimes to borrow
|
||||
--> $DIR/tests/ui/borrow/no_lifetimes.rs:5:5
|
||||
--> tests/ui/borrow/no_lifetimes.rs:5:5
|
||||
|
|
||||
5 | / #[serde(borrow)]
|
||||
6 | | s: String,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
error: #[serde(borrow)] may only be used on newtype variants
|
||||
--> $DIR/tests/ui/borrow/struct_variant.rs:8:5
|
||||
--> tests/ui/borrow/struct_variant.rs:8:5
|
||||
|
|
||||
8 | / #[serde(borrow)]
|
||||
9 | | S { s: Str<'a> },
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
error: field `s` does not have lifetime 'b
|
||||
--> $DIR/tests/ui/borrow/wrong_lifetime.rs:5:5
|
||||
--> tests/ui/borrow/wrong_lifetime.rs:5:5
|
||||
|
|
||||
5 | / #[serde(borrow = "'b")]
|
||||
6 | | s: &'a str,
|
||||
|
||||
Reference in New Issue
Block a user