]> git.lizzy.rs Git - rust.git/blob - src/test/ui/crt-static-on-works.rs
Rollup merge of #67233 - Luro02:cursor_traits, r=sfackler
[rust.git] / src / test / ui / crt-static-on-works.rs
1 // run-pass
2
3 #![allow(stable_features)]
4 // compile-flags:-C target-feature=+crt-static -Z unstable-options
5
6 #![feature(cfg_target_feature)]
7
8 #[cfg(target_feature = "crt-static")]
9 fn main() {}