11 lines
450 B
Plaintext
11 lines
450 B
Plaintext
error: duplicate serde attribute `rename`
|
|
--> tests/ui/duplicate-attribute/rename-ser-rename-ser.rs:5:38
|
|
|
|
|
3 | #[derive(Serialize)]
|
|
| --------- in this derive macro expansion
|
|
4 | struct S {
|
|
5 | #[serde(rename(serialize = "x"), rename(serialize = "y"))]
|
|
| ^^^^^^
|
|
|
|
|
= note: this error originates in the derive macro `Serialize` (in Nightly builds, run with -Z macro-backtrace for more info)
|