diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:03 +0000 |
commit | 64d98f8ee037282c35007b64c2649055c56af1db (patch) | |
tree | 5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/trivial-bounds/trivial-bounds-inconsistent-copy.stderr | |
parent | Adding debian version 1.67.1+dfsg1-1. (diff) | |
download | rustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip |
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/trivial-bounds/trivial-bounds-inconsistent-copy.stderr')
-rw-r--r-- | tests/ui/trivial-bounds/trivial-bounds-inconsistent-copy.stderr | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/ui/trivial-bounds/trivial-bounds-inconsistent-copy.stderr b/tests/ui/trivial-bounds/trivial-bounds-inconsistent-copy.stderr new file mode 100644 index 000000000..1e2662389 --- /dev/null +++ b/tests/ui/trivial-bounds/trivial-bounds-inconsistent-copy.stderr @@ -0,0 +1,28 @@ +warning: trait bound String: Copy does not depend on any type or lifetime parameters + --> $DIR/trivial-bounds-inconsistent-copy.rs:5:51 + | +LL | fn copy_string(t: String) -> String where String: Copy { + | ^^^^ + | + = note: `#[warn(trivial_bounds)]` on by default + +warning: trait bound String: Copy does not depend on any type or lifetime parameters + --> $DIR/trivial-bounds-inconsistent-copy.rs:12:56 + | +LL | fn copy_out_string(t: &String) -> String where String: Copy { + | ^^^^ + +warning: trait bound String: Copy does not depend on any type or lifetime parameters + --> $DIR/trivial-bounds-inconsistent-copy.rs:16:55 + | +LL | fn copy_string_with_param<T>(x: String) where String: Copy { + | ^^^^ + +warning: trait bound for<'b> &'b mut i32: Copy does not depend on any type or lifetime parameters + --> $DIR/trivial-bounds-inconsistent-copy.rs:22:76 + | +LL | fn copy_mut<'a>(t: &&'a mut i32) -> &'a mut i32 where for<'b> &'b mut i32: Copy { + | ^^^^ + +warning: 4 warnings emitted + |