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