summaryrefslogtreecommitdiffstats
path: root/src/test/ui/range/issue-54505-no-std.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/range/issue-54505-no-std.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/range/issue-54505-no-std.stderr')
-rw-r--r--src/test/ui/range/issue-54505-no-std.stderr113
1 files changed, 113 insertions, 0 deletions
diff --git a/src/test/ui/range/issue-54505-no-std.stderr b/src/test/ui/range/issue-54505-no-std.stderr
new file mode 100644
index 000000000..c4e36b0b1
--- /dev/null
+++ b/src/test/ui/range/issue-54505-no-std.stderr
@@ -0,0 +1,113 @@
+error: `#[panic_handler]` function required, but not found
+
+error[E0308]: mismatched types
+ --> $DIR/issue-54505-no-std.rs:27:16
+ |
+LL | take_range(0..1);
+ | ---------- ^^^^
+ | | |
+ | | expected reference, found struct `Range`
+ | | help: consider borrowing here: `&(0..1)`
+ | arguments to this function are incorrect
+ |
+ = note: expected reference `&_`
+ found struct `Range<{integer}>`
+note: function defined here
+ --> $DIR/issue-54505-no-std.rs:23:4
+ |
+LL | fn take_range(_r: &impl RangeBounds<i8>) {}
+ | ^^^^^^^^^^ -------------------------
+
+error[E0308]: mismatched types
+ --> $DIR/issue-54505-no-std.rs:32:16
+ |
+LL | take_range(1..);
+ | ---------- ^^^
+ | | |
+ | | expected reference, found struct `RangeFrom`
+ | | help: consider borrowing here: `&(1..)`
+ | arguments to this function are incorrect
+ |
+ = note: expected reference `&_`
+ found struct `RangeFrom<{integer}>`
+note: function defined here
+ --> $DIR/issue-54505-no-std.rs:23:4
+ |
+LL | fn take_range(_r: &impl RangeBounds<i8>) {}
+ | ^^^^^^^^^^ -------------------------
+
+error[E0308]: mismatched types
+ --> $DIR/issue-54505-no-std.rs:37:16
+ |
+LL | take_range(..);
+ | ---------- ^^
+ | | |
+ | | expected reference, found struct `RangeFull`
+ | | help: consider borrowing here: `&(..)`
+ | arguments to this function are incorrect
+ |
+ = note: expected reference `&_`
+ found struct `RangeFull`
+note: function defined here
+ --> $DIR/issue-54505-no-std.rs:23:4
+ |
+LL | fn take_range(_r: &impl RangeBounds<i8>) {}
+ | ^^^^^^^^^^ -------------------------
+
+error[E0308]: mismatched types
+ --> $DIR/issue-54505-no-std.rs:42:16
+ |
+LL | take_range(0..=1);
+ | ---------- ^^^^^
+ | | |
+ | | expected reference, found struct `RangeInclusive`
+ | | help: consider borrowing here: `&(0..=1)`
+ | arguments to this function are incorrect
+ |
+ = note: expected reference `&_`
+ found struct `RangeInclusive<{integer}>`
+note: function defined here
+ --> $DIR/issue-54505-no-std.rs:23:4
+ |
+LL | fn take_range(_r: &impl RangeBounds<i8>) {}
+ | ^^^^^^^^^^ -------------------------
+
+error[E0308]: mismatched types
+ --> $DIR/issue-54505-no-std.rs:47:16
+ |
+LL | take_range(..5);
+ | ---------- ^^^
+ | | |
+ | | expected reference, found struct `RangeTo`
+ | | help: consider borrowing here: `&(..5)`
+ | arguments to this function are incorrect
+ |
+ = note: expected reference `&_`
+ found struct `RangeTo<{integer}>`
+note: function defined here
+ --> $DIR/issue-54505-no-std.rs:23:4
+ |
+LL | fn take_range(_r: &impl RangeBounds<i8>) {}
+ | ^^^^^^^^^^ -------------------------
+
+error[E0308]: mismatched types
+ --> $DIR/issue-54505-no-std.rs:52:16
+ |
+LL | take_range(..=42);
+ | ---------- ^^^^^
+ | | |
+ | | expected reference, found struct `RangeToInclusive`
+ | | help: consider borrowing here: `&(..=42)`
+ | arguments to this function are incorrect
+ |
+ = note: expected reference `&_`
+ found struct `RangeToInclusive<{integer}>`
+note: function defined here
+ --> $DIR/issue-54505-no-std.rs:23:4
+ |
+LL | fn take_range(_r: &impl RangeBounds<i8>) {}
+ | ^^^^^^^^^^ -------------------------
+
+error: aborting due to 7 previous errors
+
+For more information about this error, try `rustc --explain E0308`.