mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
198 B
Rust
12 lines
198 B
Rust
// run-pass
|
|
// only-x86_64
|
|
// aux-build:using-target-feature-unstable.rs
|
|
|
|
extern crate using_target_feature_unstable;
|
|
|
|
fn main() {
|
|
unsafe {
|
|
using_target_feature_unstable::foo();
|
|
}
|
|
}
|