]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/lint-unknown-feature.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / lint / lint-unknown-feature.rs
1 // check-pass
2
3 #![warn(unused_features)]
4
5 #![allow(stable_features)]
6 // FIXME(#44232) we should warn that this isn't used.
7 #![feature(rust1)]
8
9 fn main() {}