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>2018-05-28 10:29:49 -0700
committerEsteban Küber <esteban@kuber.com.ar>2018-05-28 10:29:49 -0700
commitb169cf112807024e811154b15e622662ea8eea23 (patch)
treee2d236cd0826f5b681042c360a9ca0704de9fcfd /src/test/ui/span
parent6c7a5ba02043324580f5c75c6386e84812e83940 (diff)
downloadrust-b169cf112807024e811154b15e622662ea8eea23.tar.gz
rust-b169cf112807024e811154b15e622662ea8eea23.zip
Add primary span label
Diffstat (limited to 'src/test/ui/span')
-rw-r--r--src/test/ui/span/issue-7575.stderr7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/test/ui/span/issue-7575.stderr b/src/test/ui/span/issue-7575.stderr
index 3ae784b32a4..1061a8d9681 100644
--- a/src/test/ui/span/issue-7575.stderr
+++ b/src/test/ui/span/issue-7575.stderr
@@ -2,7 +2,7 @@ error[E0599]: no method named `f9` found for type `usize` in the current scope
   --> $DIR/issue-7575.rs:74:18
    |
 LL |     u.f8(42) + u.f9(342) + m.fff(42)
-   |                  ^^
+   |                  ^^ this is an associated function, not a method
    |
    = note: found the following associated functions; to be used as methods, functions must have a `self` parameter
 note: candidate #1 is defined in the trait `CtxtFn`
@@ -37,7 +37,8 @@ LL | struct Myisize(isize);
 ...
 LL |     u.f8(42) + u.f9(342) + m.fff(42)
    |                            --^^^
-   |                            |
+   |                            | |
+   |                            | this is an associated function, not a method
    |                            help: use associated function syntax intead: `Myisize::fff`
    |
    = note: found the following associated functions; to be used as methods, functions must have a `self` parameter
@@ -51,7 +52,7 @@ error[E0599]: no method named `is_str` found for type `T` in the current scope
   --> $DIR/issue-7575.rs:82:7
    |
 LL |     t.is_str()
-   |       ^^^^^^
+   |       ^^^^^^ this is an associated function, not a method
    |
    = note: found the following associated functions; to be used as methods, functions must have a `self` parameter
 note: the candidate is defined in the trait `ManyImplTrait`