Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fa66a61

Browse files
authoredJun 6, 2024
Rollup merge of rust-lang#126096 - c410-f3r:tests-tests-tests, r=jhpratt
[RFC-2011] Allow `core_intrinsics` when activated Fix rust-lang#120612
2 parents 051c6c6 + 5736944 commit fa66a61

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎core/src/macros/mod.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -1569,7 +1569,12 @@ pub(crate) mod builtin {
15691569
#[rustc_builtin_macro]
15701570
#[macro_export]
15711571
#[rustc_diagnostic_item = "assert_macro"]
1572-
#[allow_internal_unstable(panic_internals, edition_panic, generic_assert_internals)]
1572+
#[allow_internal_unstable(
1573+
core_intrinsics,
1574+
panic_internals,
1575+
edition_panic,
1576+
generic_assert_internals
1577+
)]
15731578
macro_rules! assert {
15741579
($cond:expr $(,)?) => {{ /* compiler built-in */ }};
15751580
($cond:expr, $($arg:tt)+) => {{ /* compiler built-in */ }};

0 commit comments

Comments
 (0)
Failed to load comments.