rust/tests/ui/deriving
Nicholas Nethercote 75e87d1f81 Fix syntax in -Zunpretty-expanded output for derived PartialEq.
If you do `derive(PartialEq)` on a packed struct, the output shown by
`-Zunpretty=expanded` includes expressions like this:
```
{ self.x } == { other.x }
```
This is invalid syntax. This doesn't break compilation, because the AST
nodes are constructed within the compiler. But it does mean anyone using
`-Zunpretty=expanded` output as a guide for hand-written impls could get
a nasty surprise.

This commit fixes things by instead using this form:
```
({ self.x }) == ({ other.x })
```
2023-02-01 15:14:05 +11:00
..
auxiliary Move /src/test to /tests 2023-01-11 09:32:08 +00:00
derive-no-std.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
derive-partialord-correctness.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-all-codegen.rs Allow more deriving on packed structs. 2023-01-30 12:00:42 +11:00
deriving-all-codegen.stderr Allow more deriving on packed structs. 2023-01-30 12:00:42 +11:00
deriving-all-codegen.stdout Fix syntax in -Zunpretty-expanded output for derived PartialEq. 2023-02-01 15:14:05 +11:00
deriving-associated-types.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-bounds.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-clone-array.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-clone-enum.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-clone-generic-enum.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-clone-generic-struct.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-clone-generic-tuple-struct.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-clone-struct.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-clone-tuple-struct.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-cmp-generic-enum.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-cmp-generic-struct-enum.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-cmp-generic-struct.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-cmp-generic-tuple-struct.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-cmp-shortcircuit.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-copyclone.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-default-box.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-default-enum.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-enum-single-variant.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-eq-ord-boxed-slice.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-hash.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-in-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-in-macro.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-meta-multiple.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-meta.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-self-lifetime-totalord-totaleq.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-show-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-show.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-via-extension-c-enum.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-via-extension-enum.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-via-extension-hash-enum.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-via-extension-hash-struct.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-via-extension-struct-empty.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-via-extension-struct-like-enum-variant.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-via-extension-struct-tuple.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-via-extension-struct.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-via-extension-type-params.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-with-helper.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deriving-with-repr-packed.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3935.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-6341.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-19358.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-58319.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-89188-gat-hrtb.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-103157.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-103157.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-105101.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-105101.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00