5c3a0b191e
Namely: * `quote` * `link_args` * `link_llvm_intrinsics` * `thread_local` * `unsafe_destructor` Also updates test for `plugin_registrar` to make it clear that it is only testing the `plugin_registrar` feature gate. Cc #22820.
20 lines
689 B
Rust
20 lines
689 B
Rust
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution and at
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
extern {
|
|
#[link_name = "llvm.sqrt.f32"]
|
|
fn sqrt(x: f32) -> f32;
|
|
//~^ ERROR linking to LLVM intrinsics is experimental
|
|
//~| HELP add #![feature(link_llvm_intrinsics)] to the crate attributes
|
|
}
|
|
|
|
fn main(){
|
|
}
|