summaryrefslogtreecommitdiffstats
path: root/tests/ui/str/str-mut-idx.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/str/str-mut-idx.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-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/str/str-mut-idx.stderr')
-rw-r--r--tests/ui/str/str-mut-idx.stderr78
1 files changed, 78 insertions, 0 deletions
diff --git a/tests/ui/str/str-mut-idx.stderr b/tests/ui/str/str-mut-idx.stderr
new file mode 100644
index 000000000..ca4b86ba3
--- /dev/null
+++ b/tests/ui/str/str-mut-idx.stderr
@@ -0,0 +1,78 @@
+error[E0277]: the size for values of type `str` cannot be known at compilation time
+ --> $DIR/str-mut-idx.rs:4:15
+ |
+LL | s[1..2] = bot();
+ | ^^^ doesn't have a size known at compile-time
+ |
+ = help: the trait `Sized` is not implemented for `str`
+note: required by a bound in `bot`
+ --> $DIR/str-mut-idx.rs:1:8
+ |
+LL | fn bot<T>() -> T { loop {} }
+ | ^ required by this bound in `bot`
+help: consider relaxing the implicit `Sized` restriction
+ |
+LL | fn bot<T: ?Sized>() -> T { loop {} }
+ | ++++++++
+
+error[E0277]: the size for values of type `str` cannot be known at compilation time
+ --> $DIR/str-mut-idx.rs:4:5
+ |
+LL | s[1..2] = bot();
+ | ^^^^^^^ doesn't have a size known at compile-time
+ |
+ = help: the trait `Sized` is not implemented for `str`
+ = note: the left-hand-side of an assignment must have a statically known size
+
+error[E0277]: the type `str` cannot be indexed by `usize`
+ --> $DIR/str-mut-idx.rs:7:7
+ |
+LL | s[1usize] = bot();
+ | ^^^^^^ string indices are ranges of `usize`
+ |
+ = help: the trait `SliceIndex<str>` is not implemented for `usize`
+ = help: the trait `SliceIndex<[T]>` is implemented for `usize`
+ = note: required for `str` to implement `Index<usize>`
+
+error[E0277]: the type `str` cannot be indexed by `{integer}`
+ --> $DIR/str-mut-idx.rs:9:15
+ |
+LL | s.get_mut(1);
+ | ------- ^ string indices are ranges of `usize`
+ | |
+ | required by a bound introduced by this call
+ |
+ = help: the trait `SliceIndex<str>` is not implemented for `{integer}`
+ = note: you can use `.chars().nth()` or `.bytes().nth()`
+ for more information, see chapter 8 in The Book: <https://doc.rust-lang.org/book/ch08-02-strings.html#indexing-into-strings>
+ = help: the trait `SliceIndex<[T]>` is implemented for `usize`
+note: required by a bound in `core::str::<impl str>::get_mut`
+ --> $SRC_DIR/core/src/str/mod.rs:LL:COL
+
+error[E0277]: the type `str` cannot be indexed by `{integer}`
+ --> $DIR/str-mut-idx.rs:11:25
+ |
+LL | s.get_unchecked_mut(1);
+ | ----------------- ^ string indices are ranges of `usize`
+ | |
+ | required by a bound introduced by this call
+ |
+ = help: the trait `SliceIndex<str>` is not implemented for `{integer}`
+ = note: you can use `.chars().nth()` or `.bytes().nth()`
+ for more information, see chapter 8 in The Book: <https://doc.rust-lang.org/book/ch08-02-strings.html#indexing-into-strings>
+ = help: the trait `SliceIndex<[T]>` is implemented for `usize`
+note: required by a bound in `core::str::<impl str>::get_unchecked_mut`
+ --> $SRC_DIR/core/src/str/mod.rs:LL:COL
+
+error[E0277]: the type `str` cannot be indexed by `char`
+ --> $DIR/str-mut-idx.rs:13:7
+ |
+LL | s['c'];
+ | ^^^ string indices are ranges of `usize`
+ |
+ = help: the trait `SliceIndex<str>` is not implemented for `char`
+ = note: required for `str` to implement `Index<char>`
+
+error: aborting due to 6 previous errors
+
+For more information about this error, try `rustc --explain E0277`.