]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/specialization/defaultimpl/specialization-trait-not-implemented.stderr
On single local candidate, use span label
[rust.git] / src / test / ui / specialization / defaultimpl / specialization-trait-not-implemented.stderr
index 19809778a5e360dac1f8cabe0b8c8bb51d5f6387..ccbb2aae05d1ba2701c71cbdd7da7939aa3771e5 100644 (file)
@@ -1,17 +1,21 @@
 error[E0599]: no method named `foo_one` found for struct `MyStruct` in the current scope
   --> $DIR/specialization-trait-not-implemented.rs:22:29
    |
+LL | trait Foo {
+   | --------- this trait defines an item `foo_one`
+...
 LL | struct MyStruct;
-   | ---------------- method `foo_one` not found for this
+   | ----------------
+   | |
+   | method `foo_one` not found for this
+   | this type doesn't satisfy the bound `Foo`
 ...
 LL |     println!("{}", MyStruct.foo_one());
    |                             ^^^^^^^ method not found in `MyStruct`
    |
    = note: the method `foo_one` exists but the following trait bounds were not satisfied:
-           `MyStruct : Foo`
+           `MyStruct: Foo`
    = help: items from traits can only be used if the trait is implemented and in scope
-   = note: the following trait defines an item `foo_one`, perhaps you need to implement it:
-           candidate #1: `Foo`
 
 error: aborting due to previous error