File tree 3 files changed +12
-0
lines changed
3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 19
19
#![ feature( unicode_internals) ]
20
20
#![ recursion_limit = "256" ]
21
21
22
+ // FIXME(#56935): Work around ICEs during cross-compilation.
23
+ #[ allow( unused) ]
24
+ extern crate rustc_macros;
25
+
22
26
#[ macro_export]
23
27
macro_rules! unwrap_or {
24
28
( $opt: expr, $default: expr) => {
Original file line number Diff line number Diff line change 6
6
7
7
#![ feature( or_patterns) ]
8
8
9
+ // FIXME(#56935): Work around ICEs during cross-compilation.
10
+ #[ allow( unused) ]
11
+ extern crate rustc_macros;
12
+
9
13
mod builtin;
10
14
11
15
pub use builtin:: * ;
Original file line number Diff line number Diff line change 17
17
#![ feature( associated_type_bounds) ]
18
18
#![ feature( exhaustive_patterns) ]
19
19
20
+ // FIXME(#56935): Work around ICEs during cross-compilation.
21
+ #[ allow( unused) ]
22
+ extern crate rustc_macros;
23
+
20
24
#[ macro_use]
21
25
extern crate log;
22
26
You can’t perform that action at this time.
0 commit comments