]> git.lizzy.rs Git - rust.git/blob - tests/codegen/align-fn.rs
Rollup merge of #107190 - fmease:fix-81698, r=compiler-errors
[rust.git] / tests / codegen / align-fn.rs
1 // compile-flags: -C no-prepopulate-passes -Z mir-opt-level=0
2
3 #![crate_type = "lib"]
4 #![feature(fn_align)]
5
6 // CHECK: align 16
7 #[no_mangle]
8 #[repr(align(16))]
9 pub fn fn_align() {}