rust/tests/ui/issues/issue-20313.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
145 B
Rust
Raw Normal View History

2020-09-01 21:12:52 +00:00
extern "C" {
#[link_name = "llvm.sqrt.f32"]
fn sqrt(x: f32) -> f32; //~ ERROR linking to LLVM intrinsics is experimental
}
2020-09-01 21:12:52 +00:00
fn main() {}