summaryrefslogtreecommitdiffstats
path: root/src/test/ui/methods/method-not-found-generic-arg-elision.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/methods/method-not-found-generic-arg-elision.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/methods/method-not-found-generic-arg-elision.stderr')
-rw-r--r--src/test/ui/methods/method-not-found-generic-arg-elision.stderr97
1 files changed, 0 insertions, 97 deletions
diff --git a/src/test/ui/methods/method-not-found-generic-arg-elision.stderr b/src/test/ui/methods/method-not-found-generic-arg-elision.stderr
deleted file mode 100644
index fc42d1a4d..000000000
--- a/src/test/ui/methods/method-not-found-generic-arg-elision.stderr
+++ /dev/null
@@ -1,97 +0,0 @@
-error[E0599]: no method named `distance` found for struct `Point<i32>` in the current scope
- --> $DIR/method-not-found-generic-arg-elision.rs:82:23
- |
-LL | struct Point<T> {
- | --------------- method `distance` not found for this struct
-...
-LL | let d = point_i32.distance();
- | ^^^^^^^^ method not found in `Point<i32>`
- |
- = note: the method was found for
- - `Point<f64>`
-
-error[E0599]: no method named `other` found for struct `Point` in the current scope
- --> $DIR/method-not-found-generic-arg-elision.rs:84:23
- |
-LL | struct Point<T> {
- | --------------- method `other` not found for this struct
-...
-LL | let d = point_i32.other();
- | ^^^^^ method not found in `Point<i32>`
-
-error[E0599]: no method named `extend` found for struct `Map` in the current scope
- --> $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]>`
-
-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
- |
-LL | struct Wrapper<T>(T);
- | ----------------- method `method` not found for this struct
-...
-LL | wrapper.method();
- | ^^^^^^ method not found in `Wrapper<bool>`
- |
- = note: the method was found for
- - `Wrapper<i8>`
- - `Wrapper<i16>`
- - `Wrapper<i32>`
- - `Wrapper<i64>`
- and 2 more types
-
-error[E0599]: no method named `other` found for struct `Wrapper` in the current scope
- --> $DIR/method-not-found-generic-arg-elision.rs:92:13
- |
-LL | struct Wrapper<T>(T);
- | ----------------- method `other` not found for this struct
-...
-LL | wrapper.other();
- | ^^^^^ method not found in `Wrapper<bool>`
-
-error[E0599]: no method named `method` found for struct `Wrapper2<'_, bool, 3>` in the current scope
- --> $DIR/method-not-found-generic-arg-elision.rs:96:13
- |
-LL | struct Wrapper2<'a, T, const C: usize> {
- | -------------------------------------- method `method` not found for this struct
-...
-LL | wrapper.method();
- | ^^^^^^ method not found in `Wrapper2<'_, bool, 3>`
- |
- = note: the method was found for
- - `Wrapper2<'a, i8, C>`
- - `Wrapper2<'a, i16, C>`
- - `Wrapper2<'a, i32, C>`
-
-error[E0599]: no method named `other` found for struct `Wrapper2` in the current scope
- --> $DIR/method-not-found-generic-arg-elision.rs:98:13
- |
-LL | struct Wrapper2<'a, T, const C: usize> {
- | -------------------------------------- method `other` not found for this struct
-...
-LL | wrapper.other();
- | ^^^^^ method not found in `Wrapper2<'_, bool, 3>`
-
-error[E0599]: no method named `not_found` found for struct `Vec<{integer}>` in the current scope
- --> $DIR/method-not-found-generic-arg-elision.rs:101:7
- |
-LL | a.not_found();
- | ^^^^^^^^^ method not found in `Vec<{integer}>`
-
-error[E0599]: the method `method` exists for struct `Struct<f64>`, but its trait bounds were not satisfied
- --> $DIR/method-not-found-generic-arg-elision.rs:104:7
- |
-LL | struct Struct<T> {
- | ---------------- method `method` not found for this struct
-...
-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`
-
-error: aborting due to 9 previous errors
-
-For more information about this error, try `rustc --explain E0599`.