summaryrefslogtreecommitdiffstats
path: root/tests/ui/str/str-idx.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/str/str-idx.stderr (renamed from src/test/ui/str/str-idx.stderr)6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/test/ui/str/str-idx.stderr b/tests/ui/str/str-idx.stderr
index 019305def..cb1a6fcac 100644
--- a/src/test/ui/str/str-idx.stderr
+++ b/tests/ui/str/str-idx.stderr
@@ -24,9 +24,6 @@ LL | let _ = s.get(4);
= help: the trait `SliceIndex<[T]>` is implemented for `usize`
note: required by a bound in `core::str::<impl str>::get`
--> $SRC_DIR/core/src/str/mod.rs:LL:COL
- |
-LL | pub const fn get<I: ~const SliceIndex<str>>(&self, i: I) -> Option<&I::Output> {
- | ^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `core::str::<impl str>::get`
error[E0277]: the type `str` cannot be indexed by `{integer}`
--> $DIR/str-idx.rs:5:29
@@ -42,9 +39,6 @@ LL | let _ = s.get_unchecked(4);
= help: the trait `SliceIndex<[T]>` is implemented for `usize`
note: required by a bound in `core::str::<impl str>::get_unchecked`
--> $SRC_DIR/core/src/str/mod.rs:LL:COL
- |
-LL | pub const unsafe fn get_unchecked<I: ~const SliceIndex<str>>(&self, i: I) -> &I::Output {
- | ^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `core::str::<impl str>::get_unchecked`
error[E0277]: the type `str` cannot be indexed by `char`
--> $DIR/str-idx.rs:6:19