summaryrefslogtreecommitdiffstats
path: root/src/test/ui/kindck/kindck-copy.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/kindck/kindck-copy.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/kindck/kindck-copy.stderr')
-rw-r--r--src/test/ui/kindck/kindck-copy.stderr137
1 files changed, 0 insertions, 137 deletions
diff --git a/src/test/ui/kindck/kindck-copy.stderr b/src/test/ui/kindck/kindck-copy.stderr
deleted file mode 100644
index 9af89159a..000000000
--- a/src/test/ui/kindck/kindck-copy.stderr
+++ /dev/null
@@ -1,137 +0,0 @@
-error[E0277]: the trait bound `&'static mut isize: Copy` is not satisfied
- --> $DIR/kindck-copy.rs:27:19
- |
-LL | assert_copy::<&'static mut isize>();
- | ^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `&'static mut isize`
- |
- = help: the trait `Copy` is implemented for `isize`
-note: required by a bound in `assert_copy`
- --> $DIR/kindck-copy.rs:5:18
- |
-LL | fn assert_copy<T:Copy>() { }
- | ^^^^ required by this bound in `assert_copy`
-
-error[E0277]: the trait bound `&'a mut isize: Copy` is not satisfied
- --> $DIR/kindck-copy.rs:28:19
- |
-LL | assert_copy::<&'a mut isize>();
- | ^^^^^^^^^^^^^ the trait `Copy` is not implemented for `&'a mut isize`
- |
- = help: the trait `Copy` is implemented for `isize`
-note: required by a bound in `assert_copy`
- --> $DIR/kindck-copy.rs:5:18
- |
-LL | fn assert_copy<T:Copy>() { }
- | ^^^^ required by this bound in `assert_copy`
-
-error[E0277]: the trait bound `Box<isize>: Copy` is not satisfied
- --> $DIR/kindck-copy.rs:31:19
- |
-LL | assert_copy::<Box<isize>>();
- | ^^^^^^^^^^ the trait `Copy` is not implemented for `Box<isize>`
- |
-note: required by a bound in `assert_copy`
- --> $DIR/kindck-copy.rs:5:18
- |
-LL | fn assert_copy<T:Copy>() { }
- | ^^^^ required by this bound in `assert_copy`
-
-error[E0277]: the trait bound `String: Copy` is not satisfied
- --> $DIR/kindck-copy.rs:32:19
- |
-LL | assert_copy::<String>();
- | ^^^^^^ the trait `Copy` is not implemented for `String`
- |
-note: required by a bound in `assert_copy`
- --> $DIR/kindck-copy.rs:5:18
- |
-LL | fn assert_copy<T:Copy>() { }
- | ^^^^ required by this bound in `assert_copy`
-
-error[E0277]: the trait bound `Vec<isize>: Copy` is not satisfied
- --> $DIR/kindck-copy.rs:33:19
- |
-LL | assert_copy::<Vec<isize> >();
- | ^^^^^^^^^^ the trait `Copy` is not implemented for `Vec<isize>`
- |
-note: required by a bound in `assert_copy`
- --> $DIR/kindck-copy.rs:5:18
- |
-LL | fn assert_copy<T:Copy>() { }
- | ^^^^ required by this bound in `assert_copy`
-
-error[E0277]: the trait bound `Box<&'a mut isize>: Copy` is not satisfied
- --> $DIR/kindck-copy.rs:34:19
- |
-LL | assert_copy::<Box<&'a mut isize>>();
- | ^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `Box<&'a mut isize>`
- |
-note: required by a bound in `assert_copy`
- --> $DIR/kindck-copy.rs:5:18
- |
-LL | fn assert_copy<T:Copy>() { }
- | ^^^^ required by this bound in `assert_copy`
-
-error[E0277]: the trait bound `Box<dyn Dummy>: Copy` is not satisfied
- --> $DIR/kindck-copy.rs:42:19
- |
-LL | assert_copy::<Box<dyn Dummy>>();
- | ^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `Box<dyn Dummy>`
- |
-note: required by a bound in `assert_copy`
- --> $DIR/kindck-copy.rs:5:18
- |
-LL | fn assert_copy<T:Copy>() { }
- | ^^^^ required by this bound in `assert_copy`
-
-error[E0277]: the trait bound `Box<dyn Dummy + Send>: Copy` is not satisfied
- --> $DIR/kindck-copy.rs:43:19
- |
-LL | assert_copy::<Box<dyn Dummy + Send>>();
- | ^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `Box<dyn Dummy + Send>`
- |
-note: required by a bound in `assert_copy`
- --> $DIR/kindck-copy.rs:5:18
- |
-LL | fn assert_copy<T:Copy>() { }
- | ^^^^ required by this bound in `assert_copy`
-
-error[E0277]: the trait bound `&'a mut (dyn Dummy + Send + 'a): Copy` is not satisfied
- --> $DIR/kindck-copy.rs:46:19
- |
-LL | assert_copy::<&'a mut (dyn Dummy + Send)>();
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `&'a mut (dyn Dummy + Send + 'a)`
- |
-note: required by a bound in `assert_copy`
- --> $DIR/kindck-copy.rs:5:18
- |
-LL | fn assert_copy<T:Copy>() { }
- | ^^^^ required by this bound in `assert_copy`
-
-error[E0277]: the trait bound `MyNoncopyStruct: Copy` is not satisfied
- --> $DIR/kindck-copy.rs:64:19
- |
-LL | assert_copy::<MyNoncopyStruct>();
- | ^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `MyNoncopyStruct`
- |
-note: required by a bound in `assert_copy`
- --> $DIR/kindck-copy.rs:5:18
- |
-LL | fn assert_copy<T:Copy>() { }
- | ^^^^ required by this bound in `assert_copy`
-
-error[E0277]: the trait bound `Rc<isize>: Copy` is not satisfied
- --> $DIR/kindck-copy.rs:67:19
- |
-LL | assert_copy::<Rc<isize>>();
- | ^^^^^^^^^ the trait `Copy` is not implemented for `Rc<isize>`
- |
-note: required by a bound in `assert_copy`
- --> $DIR/kindck-copy.rs:5:18
- |
-LL | fn assert_copy<T:Copy>() { }
- | ^^^^ required by this bound in `assert_copy`
-
-error: aborting due to 11 previous errors
-
-For more information about this error, try `rustc --explain E0277`.