]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/suggestions/issue-84973-negative.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / suggestions / issue-84973-negative.stderr
index 94513eca0bf0994077ee5530cb8650f308e2f264..bd1cf6ba61460784357a382a85012243caeae8cf 100644 (file)
@@ -1,23 +1,29 @@
 error[E0277]: the trait bound `i32: Tr` is not satisfied
   --> $DIR/issue-84973-negative.rs:10:9
    |
-LL | fn bar<T: Tr>(t: T) {}
-   |           -- required by this bound in `bar`
-...
 LL |     bar(a);
    |         ^ the trait `Tr` is not implemented for `i32`
+   |
+note: required by a bound in `bar`
+  --> $DIR/issue-84973-negative.rs:5:11
+   |
+LL | fn bar<T: Tr>(t: T) {}
+   |           ^^ required by this bound in `bar`
 
 error[E0277]: the trait bound `f32: Tr` is not satisfied
   --> $DIR/issue-84973-negative.rs:11:9
    |
-LL | fn bar<T: Tr>(t: T) {}
-   |           -- required by this bound in `bar`
-...
 LL |     bar(b);
    |         ^
    |         |
    |         expected an implementor of trait `Tr`
    |         help: consider borrowing here: `&b`
+   |
+note: required by a bound in `bar`
+  --> $DIR/issue-84973-negative.rs:5:11
+   |
+LL | fn bar<T: Tr>(t: T) {}
+   |           ^^ required by this bound in `bar`
 
 error: aborting due to 2 previous errors