2023-05-21 21:51:57 -04:00
|
|
|
// Tests #108655: closures in `#[target_feature]` functions can still be marked #[inline(always)]
|
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
|
|
|
|
//@ only-x86_64
|
2023-05-21 21:51:57 -04:00
|
|
|
|
|
|
|
|
#[target_feature(enable = "avx")]
|
|
|
|
|
pub unsafe fn test() {
|
|
|
|
|
({
|
|
|
|
|
#[inline(always)]
|
|
|
|
|
move || {}
|
|
|
|
|
})();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|