about summary refs log tree commit diff
path: root/src/test/ui/error-codes
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2019-12-12 15:22:46 -0800
committerEsteban Küber <esteban@kuber.com.ar>2019-12-24 22:08:05 -0800
commit759df5fa357ecc0f4a0dee9a3ac9c8b1c7160cb8 (patch)
tree24bce09978a98d6603068d5174c97a8e31f09d4f /src/test/ui/error-codes
parent547abe0c52fedc11cd4d1276f7ad51ce29a411e6 (diff)
downloadrust-759df5fa357ecc0f4a0dee9a3ac9c8b1c7160cb8.tar.gz
rust-759df5fa357ecc0f4a0dee9a3ac9c8b1c7160cb8.zip
Fix case in `associated-type-projection-from-multiple-supertraits.rs`
This still doesn't handle the case entirely correctly, requiring a more
targeted approach with a better suggestion, but at least now the
suggested syntax makes *some* sense.
Diffstat (limited to 'src/test/ui/error-codes')
-rw-r--r--src/test/ui/error-codes/E0220.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/error-codes/E0220.stderr b/src/test/ui/error-codes/E0220.stderr
index 58a92fe9832..73e66ceb845 100644
--- a/src/test/ui/error-codes/E0220.stderr
+++ b/src/test/ui/error-codes/E0220.stderr
@@ -1,8 +1,8 @@
 error[E0220]: associated type `F` not found for `Trait`
-  --> $DIR/E0220.rs:5:22
+  --> $DIR/E0220.rs:5:16
    |
 LL | type Foo = dyn Trait<F=i32>;
-   |                      ^^^^^ associated type `F` not found
+   |                ^^^^^^^^^^^^ associated type `F` not found
 
 error[E0191]: the value of the associated type `Bar` (from trait `Trait`) must be specified
   --> $DIR/E0220.rs:5:16