]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-unknown-feature.rs
Merge commit '2bb3996244cf1b89878da9e39841e9f6bf061602' into sync_cg_clif-2022-12-14
[rust.git] / src / test / 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() {}