File tree 3 files changed +4
-2
lines changed
compiler/rustc_codegen_llvm/src
tests/ui-fulldeps/stable-mir
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 8
8
#![ feature( rustdoc_internals) ]
9
9
#![ doc( rust_logo) ]
10
10
#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/" ) ]
11
- #![ cfg_attr ( bootstrap , feature( c_str_literals) ) ]
11
+ #![ feature( c_str_literals) ]
12
12
#![ feature( exact_size_is_empty) ]
13
13
#![ feature( extern_types) ]
14
14
#![ feature( hash_raw_entry) ]
Original file line number Diff line number Diff line change 308
308
//
309
309
// Library features (core):
310
310
// tidy-alphabetical-start
311
- #![ cfg_attr ( bootstrap , feature( c_str_literals) ) ]
311
+ #![ feature( c_str_literals) ]
312
312
#![ feature( char_internals) ]
313
313
#![ feature( core_intrinsics) ]
314
314
#![ feature( core_io_borrowed_buf) ]
Original file line number Diff line number Diff line change 12
12
#![ feature( assert_matches) ]
13
13
#![ feature( control_flow_enum) ]
14
14
#![ feature( ascii_char, ascii_char_variants) ]
15
+ #![ feature( c_str_literals) ]
15
16
16
17
extern crate rustc_hir;
17
18
extern crate rustc_middle;
@@ -239,6 +240,7 @@ fn generate_input(path: &str) -> std::io::Result<()> {
239
240
file,
240
241
r#"
241
242
#![feature(core_intrinsics)]
243
+ #![feature(c_str_literals)]
242
244
use std::intrinsics::type_id;
243
245
244
246
static LEN: usize = 2;
You can’t perform that action at this time.
0 commit comments