Skip to content

Commit 06d03a0

Browse files
committed
fixup failing test, bless error changes
1 parent 86e8ede commit 06d03a0

File tree

3 files changed

+34
-39
lines changed

3 files changed

+34
-39
lines changed

tests/mir-opt/pre-codegen/vec_deref.vec_deref_to_slice.PreCodegen.after.panic-unwind.mir

+32-29
Original file line numberDiff line numberDiff line change
@@ -5,41 +5,44 @@ fn vec_deref_to_slice(_1: &Vec<u8>) -> &[u8] {
55
let mut _0: &[u8];
66
scope 1 (inlined <Vec<u8> as Deref>::deref) {
77
debug self => _1;
8-
let mut _4: *const u8;
9-
let mut _5: usize;
10-
scope 2 (inlined Vec::<u8>::as_ptr) {
8+
scope 2 (inlined Vec::<u8>::as_slice) {
119
debug self => _1;
12-
let mut _2: &alloc::raw_vec::RawVec<u8>;
13-
scope 3 (inlined alloc::raw_vec::RawVec::<u8>::ptr) {
14-
debug self => _2;
15-
let mut _3: std::ptr::NonNull<u8>;
16-
scope 4 (inlined Unique::<u8>::as_ptr) {
17-
debug ((self: Unique<u8>).0: std::ptr::NonNull<u8>) => _3;
18-
debug ((self: Unique<u8>).1: std::marker::PhantomData<u8>) => const PhantomData::<u8>;
19-
scope 5 (inlined NonNull::<u8>::as_ptr) {
20-
debug self => _3;
10+
let mut _4: *const u8;
11+
let mut _5: usize;
12+
scope 3 (inlined Vec::<u8>::as_ptr) {
13+
debug self => _1;
14+
let mut _2: &alloc::raw_vec::RawVec<u8>;
15+
scope 4 (inlined alloc::raw_vec::RawVec::<u8>::ptr) {
16+
debug self => _2;
17+
let mut _3: std::ptr::NonNull<u8>;
18+
scope 5 (inlined Unique::<u8>::as_ptr) {
19+
debug ((self: Unique<u8>).0: std::ptr::NonNull<u8>) => _3;
20+
debug ((self: Unique<u8>).1: std::marker::PhantomData<u8>) => const PhantomData::<u8>;
21+
scope 6 (inlined NonNull::<u8>::as_ptr) {
22+
debug self => _3;
23+
}
2124
}
2225
}
2326
}
24-
}
25-
scope 6 (inlined std::slice::from_raw_parts::<'_, u8>) {
26-
debug data => _4;
27-
debug len => _5;
28-
let _6: *const [u8];
29-
scope 7 (inlined core::ub_checks::check_language_ub) {
30-
scope 8 (inlined core::ub_checks::check_language_ub::runtime) {
31-
}
32-
}
33-
scope 9 (inlined std::mem::size_of::<u8>) {
34-
}
35-
scope 10 (inlined align_of::<u8>) {
36-
}
37-
scope 11 (inlined slice_from_raw_parts::<u8>) {
27+
scope 7 (inlined std::slice::from_raw_parts::<'_, u8>) {
3828
debug data => _4;
3929
debug len => _5;
40-
scope 12 (inlined std::ptr::from_raw_parts::<[u8], u8>) {
41-
debug data_pointer => _4;
42-
debug metadata => _5;
30+
let _6: *const [u8];
31+
scope 8 (inlined core::ub_checks::check_language_ub) {
32+
scope 9 (inlined core::ub_checks::check_language_ub::runtime) {
33+
}
34+
}
35+
scope 10 (inlined std::mem::size_of::<u8>) {
36+
}
37+
scope 11 (inlined align_of::<u8>) {
38+
}
39+
scope 12 (inlined slice_from_raw_parts::<u8>) {
40+
debug data => _4;
41+
debug len => _5;
42+
scope 13 (inlined std::ptr::from_raw_parts::<[u8], u8>) {
43+
debug data_pointer => _4;
44+
debug metadata => _5;
45+
}
4346
}
4447
}
4548
}

tests/ui/consts/issue-94675.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//@ known-bug: #103507
22

3-
#![feature(const_trait_impl, const_mut_refs)]
3+
#![feature(const_trait_impl, const_mut_refs, const_vec_string_slice)]
44

55
struct Foo<'a> {
66
bar: &'a mut Vec<usize>,

tests/ui/consts/issue-94675.stderr

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
error[E0015]: cannot call non-const fn `Vec::<u32>::len` in constant functions
2-
--> $DIR/issue-94675.rs:11:27
3-
|
4-
LL | self.bar[0] = baz.len();
5-
| ^^^^^
6-
|
7-
= note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
8-
91
error[E0015]: cannot call non-const operator in constant functions
102
--> $DIR/issue-94675.rs:11:17
113
|
@@ -20,6 +12,6 @@ help: add `#![feature(effects)]` to the crate attributes to enable
2012
LL + #![feature(effects)]
2113
|
2214

23-
error: aborting due to 2 previous errors
15+
error: aborting due to 1 previous error
2416

2517
For more information about this error, try `rustc --explain E0015`.

0 commit comments

Comments
 (0)