Skip to content

Commit 415258f

Browse files
authored
Rollup merge of rust-lang#108558 - RalfJung:core-tests, r=thomcc
add missing feature in core/tests rust-lang#104265 introduced the `ip_in_core` feature. For some reason core tests seem to still build without that feature -- no idea how that is possible. Might be related to rust-lang#15702? I was under the impression that `pub use` with different stability doesn't actually work. That's why `intrinsics::transmute` is stable, for example. Either way, core tests fail to build in miri-test-libstd, and adding the feature fixes that. r? ``@thomcc``
2 parents 0beb3a1 + 229aef1 commit 415258f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

library/core/tests/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
#![feature(slice_internals)]
6868
#![feature(slice_partition_dedup)]
6969
#![feature(ip)]
70+
#![feature(ip_in_core)]
7071
#![feature(iter_advance_by)]
7172
#![feature(iter_array_chunks)]
7273
#![feature(iter_collect_into)]

0 commit comments

Comments
 (0)