mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-11 17:37:41 +00:00
8 lines
168 B
Rust
8 lines
168 B
Rust
![]() |
use super::*;
|
||
|
|
||
|
#[test]
|
||
|
fn align_constants() {
|
||
|
assert_eq!(Align::ONE, Align::from_bytes(1).unwrap());
|
||
|
assert_eq!(Align::EIGHT, Align::from_bytes(8).unwrap());
|
||
|
}
|