summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/issue-84973-blacklist.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/suggestions/issue-84973-blacklist.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/suggestions/issue-84973-blacklist.stderr')
-rw-r--r--src/test/ui/suggestions/issue-84973-blacklist.stderr80
1 files changed, 0 insertions, 80 deletions
diff --git a/src/test/ui/suggestions/issue-84973-blacklist.stderr b/src/test/ui/suggestions/issue-84973-blacklist.stderr
deleted file mode 100644
index c20cc8164..000000000
--- a/src/test/ui/suggestions/issue-84973-blacklist.stderr
+++ /dev/null
@@ -1,80 +0,0 @@
-error[E0277]: the trait bound `String: Copy` is not satisfied
- --> $DIR/issue-84973-blacklist.rs:15:12
- |
-LL | f_copy("".to_string());
- | ------ ^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `String`
- | |
- | required by a bound introduced by this call
- |
-note: required by a bound in `f_copy`
- --> $DIR/issue-84973-blacklist.rs:6:14
- |
-LL | fn f_copy<T: Copy>(t: T) {}
- | ^^^^ required by this bound in `f_copy`
-
-error[E0277]: the trait bound `S: Clone` is not satisfied
- --> $DIR/issue-84973-blacklist.rs:16:13
- |
-LL | f_clone(S);
- | ------- ^ the trait `Clone` is not implemented for `S`
- | |
- | required by a bound introduced by this call
- |
-note: required by a bound in `f_clone`
- --> $DIR/issue-84973-blacklist.rs:7:15
- |
-LL | fn f_clone<T: Clone>(t: T) {}
- | ^^^^^ required by this bound in `f_clone`
-help: consider annotating `S` with `#[derive(Clone)]`
- |
-LL | #[derive(Clone)]
- |
-
-error[E0277]: `[static generator@$DIR/issue-84973-blacklist.rs:17:13: 17:22]` cannot be unpinned
- --> $DIR/issue-84973-blacklist.rs:17:13
- |
-LL | f_unpin(static || { yield; });
- | ------- ^^^^^^^^^^^^^^^^^^^^ the trait `Unpin` is not implemented for `[static generator@$DIR/issue-84973-blacklist.rs:17:13: 17:22]`
- | |
- | required by a bound introduced by this call
- |
- = note: consider using `Box::pin`
-note: required by a bound in `f_unpin`
- --> $DIR/issue-84973-blacklist.rs:8:15
- |
-LL | fn f_unpin<T: Unpin>(t: T) {}
- | ^^^^^ required by this bound in `f_unpin`
-
-error[E0277]: the size for values of type `dyn Fn()` cannot be known at compilation time
- --> $DIR/issue-84973-blacklist.rs:22:13
- |
-LL | f_sized(*ref_cl);
- | ------- ^^^^^^^ doesn't have a size known at compile-time
- | |
- | required by a bound introduced by this call
- |
- = help: the trait `Sized` is not implemented for `dyn Fn()`
-note: required by a bound in `f_sized`
- --> $DIR/issue-84973-blacklist.rs:9:12
- |
-LL | fn f_sized<T: Sized>(t: T) {}
- | ^ required by this bound in `f_sized`
-
-error[E0277]: `Rc<{integer}>` cannot be sent between threads safely
- --> $DIR/issue-84973-blacklist.rs:27:12
- |
-LL | f_send(rc);
- | ------ ^^ `Rc<{integer}>` cannot be sent between threads safely
- | |
- | required by a bound introduced by this call
- |
- = help: the trait `Send` is not implemented for `Rc<{integer}>`
-note: required by a bound in `f_send`
- --> $DIR/issue-84973-blacklist.rs:10:14
- |
-LL | fn f_send<T: Send>(t: T) {}
- | ^^^^ required by this bound in `f_send`
-
-error: aborting due to 5 previous errors
-
-For more information about this error, try `rustc --explain E0277`.