mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-31 21:47:15 +03:00
11 lines
243 B
Rust
11 lines
243 B
Rust
//! Regression test for https://github.com/rust-lang/rust/issues/49632
|
|
|
|
//@ run-pass
|
|
#![feature(stmt_expr_attributes)]
|
|
|
|
pub fn main() {
|
|
let _x = #[inline(always)] || {};
|
|
let _y = #[inline(never)] || {};
|
|
let _z = #[inline] || {};
|
|
}
|