File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
compiler/rustc_codegen_llvm/src
tests/ui-fulldeps/stable-mir Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 88#![ feature( rustdoc_internals) ]
99#![ doc( rust_logo) ]
1010#![ 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) ]
1212#![ feature( exact_size_is_empty) ]
1313#![ feature( extern_types) ]
1414#![ feature( hash_raw_entry) ]
Original file line number Diff line number Diff line change 308308//
309309// Library features (core):
310310// tidy-alphabetical-start
311- #![ cfg_attr ( bootstrap , feature( c_str_literals) ) ]
311+ #![ feature( c_str_literals) ]
312312#![ feature( char_internals) ]
313313#![ feature( core_intrinsics) ]
314314#![ feature( core_io_borrowed_buf) ]
Original file line number Diff line number Diff line change 1212#![ feature( assert_matches) ]
1313#![ feature( control_flow_enum) ]
1414#![ feature( ascii_char, ascii_char_variants) ]
15+ #![ feature( c_str_literals) ]
1516
1617extern crate rustc_hir;
1718extern crate rustc_middle;
@@ -239,6 +240,7 @@ fn generate_input(path: &str) -> std::io::Result<()> {
239240 file,
240241 r#"
241242 #![feature(core_intrinsics)]
243+ #![feature(c_str_literals)]
242244 use std::intrinsics::type_id;
243245
244246 static LEN: usize = 2;
You can’t perform that action at this time.
0 commit comments