diff options
| author | Esteban Küber <esteban@kuber.com.ar> | 2023-10-16 18:25:11 +0000 |
|---|---|---|
| committer | Esteban Küber <esteban@kuber.com.ar> | 2023-10-17 17:33:55 +0000 |
| commit | 890e92feedcfe942cea8ffda2929d9d4ecf8ab5f (patch) | |
| tree | e85271a13254f7f724d3cb6a019f57ddeadbbff8 /tests/ui/structs | |
| parent | 6cf01fcf1ec24142919d92035b8531c4ff1deaca (diff) | |
| download | rust-890e92feedcfe942cea8ffda2929d9d4ecf8ab5f.tar.gz rust-890e92feedcfe942cea8ffda2929d9d4ecf8ab5f.zip | |
Unify suggestion wording
Diffstat (limited to 'tests/ui/structs')
| -rw-r--r-- | tests/ui/structs/struct-path-associated-type.stderr | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/structs/struct-path-associated-type.stderr b/tests/ui/structs/struct-path-associated-type.stderr index acfddaf3760..0c9d2aad5d8 100644 --- a/tests/ui/structs/struct-path-associated-type.stderr +++ b/tests/ui/structs/struct-path-associated-type.stderr @@ -48,19 +48,19 @@ error[E0223]: ambiguous associated type --> $DIR/struct-path-associated-type.rs:32:13 | LL | let s = S::A {}; - | ^^^^ help: use the fully-qualified path: `<S as Tr>::A` + | ^^^^ help: use fully-qualified syntax: `<S as Tr>::A` error[E0223]: ambiguous associated type --> $DIR/struct-path-associated-type.rs:33:13 | LL | let z = S::A::<u8> {}; - | ^^^^ help: use the fully-qualified path: `<S as Tr>::A` + | ^^^^ help: use fully-qualified syntax: `<S as Tr>::A` error[E0223]: ambiguous associated type --> $DIR/struct-path-associated-type.rs:35:9 | LL | S::A {} => {} - | ^^^^ help: use the fully-qualified path: `<S as Tr>::A` + | ^^^^ help: use fully-qualified syntax: `<S as Tr>::A` error: aborting due to 8 previous errors |
