summaryrefslogtreecommitdiffstats
path: root/tests/ui/trivial-bounds/issue-73021-impossible-inline.inline.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 /tests/ui/trivial-bounds/issue-73021-impossible-inline.inline.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 'tests/ui/trivial-bounds/issue-73021-impossible-inline.inline.stderr')
-rw-r--r--tests/ui/trivial-bounds/issue-73021-impossible-inline.inline.stderr46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/ui/trivial-bounds/issue-73021-impossible-inline.inline.stderr b/tests/ui/trivial-bounds/issue-73021-impossible-inline.inline.stderr
new file mode 100644
index 000000000..40829f537
--- /dev/null
+++ b/tests/ui/trivial-bounds/issue-73021-impossible-inline.inline.stderr
@@ -0,0 +1,46 @@
+warning: trait bound for<'any> &'any mut (): Clone does not depend on any type or lifetime parameters
+ --> $DIR/issue-73021-impossible-inline.rs:20:29
+ |
+LL | for<'any> &'any mut (): Clone,
+ | ^^^^^
+ |
+ = note: `#[warn(trivial_bounds)]` on by default
+
+warning: trait bound i32: Foo does not depend on any type or lifetime parameters
+ --> $DIR/issue-73021-impossible-inline.rs:28:21
+ |
+LL | struct S where i32: Foo;
+ | ^^^
+
+warning: trait bound i32: Foo does not depend on any type or lifetime parameters
+ --> $DIR/issue-73021-impossible-inline.rs:31:28
+ |
+LL | impl Foo for () where i32: Foo {
+ | ^^^
+
+warning: trait bound i32: Foo does not depend on any type or lifetime parameters
+ --> $DIR/issue-73021-impossible-inline.rs:40:19
+ |
+LL | fn f() where i32: Foo {
+ | ^^^
+
+warning: trait bound &'static str: Foo does not depend on any type or lifetime parameters
+ --> $DIR/issue-73021-impossible-inline.rs:48:28
+ |
+LL | fn g() where &'static str: Foo {
+ | ^^^
+
+warning: trait bound String: Neg does not depend on any type or lifetime parameters
+ --> $DIR/issue-73021-impossible-inline.rs:57:13
+ |
+LL | String: ::std::ops::Neg<Output = String>,
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+warning: trait bound i32: Iterator does not depend on any type or lifetime parameters
+ --> $DIR/issue-73021-impossible-inline.rs:65:10
+ |
+LL | i32: Iterator,
+ | ^^^^^^^^
+
+warning: 7 warnings emitted
+