]> git.lizzy.rs Git - rust.git/blob - tests/ui/using-target-feature-unstable.rs
Rollup merge of #106605 - notriddle:notriddle/outdated-rustbook, r=GuillaumeGomez
[rust.git] / tests / ui / using-target-feature-unstable.rs
1 // run-pass
2 // only-x86_64
3 // aux-build:using-target-feature-unstable.rs
4
5 extern crate using_target_feature_unstable;
6
7 fn main() {
8     unsafe {
9         using_target_feature_unstable::foo();
10     }
11 }