]> git.lizzy.rs Git - rust.git/blob - src/test/ui/crt-static-on-works.rs
Rollup merge of #65965 - GuillaumeGomez:clean-up-librustc_typeck-error-codes, r=Mark...
[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() {}