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() { }
|