summaryrefslogtreecommitdiffstats
path: root/tests/ui/methods/method-not-found-generic-arg-elision.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/methods/method-not-found-generic-arg-elision.stderr (renamed from src/test/ui/methods/method-not-found-generic-arg-elision.stderr)15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/test/ui/methods/method-not-found-generic-arg-elision.stderr b/tests/ui/methods/method-not-found-generic-arg-elision.stderr
index fc42d1a4d..f3db56d1d 100644
--- a/src/test/ui/methods/method-not-found-generic-arg-elision.stderr
+++ b/tests/ui/methods/method-not-found-generic-arg-elision.stderr
@@ -23,7 +23,7 @@ error[E0599]: no method named `extend` found for struct `Map` in the current sco
--> $DIR/method-not-found-generic-arg-elision.rs:87:29
|
LL | v.iter().map(|x| x * x).extend(std::iter::once(100));
- | ^^^^^^ method not found in `Map<std::slice::Iter<'_, i32>, [closure@$DIR/method-not-found-generic-arg-elision.rs:87:18: 87:21]>`
+ | ^^^^^^ method not found in `Map<Iter<'_, i32>, [closure@method-not-found-generic-arg-elision.rs:87:18]>`
error[E0599]: no method named `method` found for struct `Wrapper<bool>` in the current scope
--> $DIR/method-not-found-generic-arg-elision.rs:90:13
@@ -88,9 +88,16 @@ LL | struct Struct<T> {
LL | s.method();
| ^^^^^^ method cannot be called on `Struct<f64>` due to unsatisfied trait bounds
|
- = note: the following trait bounds were not satisfied:
- `f64: Eq`
- `f64: Ord`
+note: the following trait bounds were not satisfied:
+ `f64: Eq`
+ `f64: Ord`
+ --> $DIR/method-not-found-generic-arg-elision.rs:74:36
+ |
+LL | impl<T: Clone + Copy + PartialEq + Eq + PartialOrd + Ord> Struct<T> {
+ | ^^ ^^^ ---------
+ | | |
+ | | unsatisfied trait bound introduced here
+ | unsatisfied trait bound introduced here
error: aborting due to 9 previous errors