]> git.proxmox.com Git - rustc.git/blame - src/test/ui/using-target-feature-unstable.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / using-target-feature-unstable.rs
CommitLineData
416331ca 1// run-pass
83c7162d
XL
2// only-x86_64
3// aux-build:using-target-feature-unstable.rs
041b39d2 4
83c7162d 5extern crate using_target_feature_unstable;
041b39d2
XL
6
7fn main() {
83c7162d
XL
8 unsafe {
9 using_target_feature_unstable::foo();
10 }
041b39d2 11}