about summary refs log tree commit diff
path: root/compiler/rustc_abi/src/tests.rs
blob: d993012378c811b0ea442b2f5424ef0285268427 (plain)
1
2
3
4
5
6
7
use super::*;

#[test]
fn align_constants() {
    assert_eq!(Align::ONE, Align::from_bytes(1).unwrap());
    assert_eq!(Align::EIGHT, Align::from_bytes(8).unwrap());
}