Skip to content

Commit c59939b

Browse files
authored
Update static_assert.rs
1 parent 7f1f62a commit c59939b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/kernel/static_assert.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
#[macro_export]
3030
macro_rules! static_assert {
3131
($condition:expr) => {
32-
const _: () = assert!($condition);
32+
const _: () = core::assert!($condition);
3333
};
3434
}

0 commit comments

Comments
 (0)