about summary refs log tree commit diff
path: root/src/test/ui/span
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2019-12-19 11:23:57 -0800
committerEsteban Küber <esteban@kuber.com.ar>2019-12-24 22:25:45 -0800
commit93fb219579b3c012dbef7594b676f62070cd666e (patch)
treeeca7d83099fab7c06d37c99eac3f8f3871b83eb1 /src/test/ui/span
parent245f62eb8a298892618a9d90327663fe932d493a (diff)
Fix suggestion span for typo in associated type name
Diffstat (limited to 'src/test/ui/span')
-rw-r--r--src/test/ui/span/type-binding.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/span/type-binding.stderr b/src/test/ui/span/type-binding.stderr
index 5b64fe18892..f6989933553 100644
--- a/src/test/ui/span/type-binding.stderr
+++ b/src/test/ui/span/type-binding.stderr
@@ -1,8 +1,8 @@
 error[E0220]: associated type `Trget` not found for `std::ops::Deref`
-  --> $DIR/type-binding.rs:6:14
+  --> $DIR/type-binding.rs:6:20
    |
 LL | fn homura<T: Deref<Trget = i32>>(_: T) {}
-   |                    ^^^^^^^^^^^ help: there is an associated type with a similar name: `Target`
+   |                    ^^^^^ help: there is an associated type with a similar name: `Target`
 
 error: aborting due to previous error