File tree 2 files changed +4
-4
lines changed
library/alloc/src/collections/binary_heap
src/bootstrap/src/core/build_steps
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -440,10 +440,7 @@ impl<T: Ord> BinaryHeap<T> {
440
440
/// heap.push(4);
441
441
/// ```
442
442
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
443
- #[ rustc_const_stable(
444
- feature = "const_binary_heap_constructor" ,
445
- since = "1.80.0"
446
- ) ]
443
+ #[ rustc_const_stable( feature = "const_binary_heap_constructor" , since = "1.80.0" ) ]
447
444
#[ must_use]
448
445
pub const fn new ( ) -> BinaryHeap < T > {
449
446
BinaryHeap { data : vec ! [ ] }
Original file line number Diff line number Diff line change @@ -1138,7 +1138,10 @@ pub fn rustc_cargo_env(
1138
1138
1139
1139
// Enable rustc's env var for `rust-lld` when requested.
1140
1140
if builder. config . lld_enabled {
1141
+ eprintln ! ( "status: CFG_USE_SELF_CONTAINED_LINKER is enabled" ) ;
1141
1142
cargo. env ( "CFG_USE_SELF_CONTAINED_LINKER" , "1" ) ;
1143
+ } else {
1144
+ eprintln ! ( "status: CFG_USE_SELF_CONTAINED_LINKER is disabled" ) ;
1142
1145
}
1143
1146
1144
1147
if builder. config . rust_verify_llvm_ir {
You can’t perform that action at this time.
0 commit comments