10 lines
145 B
Rust
10 lines
145 B
Rust
![]() |
use arch::interrupt::{set_interrupts, halt};
|
||
|
|
||
|
#[test]
|
||
|
fn halt_with_interrupts() {
|
||
|
unsafe {
|
||
|
set_interrupts();
|
||
|
halt();
|
||
|
}
|
||
|
}
|