rust/src/test/run-pass/using-target-feature-unstable.rs
2018-12-25 21:08:33 -07:00

11 lines
186 B
Rust

// only-x86_64
// aux-build:using-target-feature-unstable.rs
extern crate using_target_feature_unstable;
fn main() {
unsafe {
using_target_feature_unstable::foo();
}
}