mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
10 lines
165 B
Rust
10 lines
165 B
Rust
//@ only-aarch64
|
|
#[inline(always)]
|
|
//~^ ERROR cannot use `#[inline(always)]` with `#[target_feature]`
|
|
#[target_feature(enable="fp16")]
|
|
fn test() {
|
|
|
|
}
|
|
|
|
fn main() { }
|