]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-unknown-feature.rs
Merge commit '0969bc6dde001e01e7e1f58c8ccd7750f8a49ae1' into sync_cg_clif-2021-03-29
[rust.git] / src / test / ui / lint / lint-unknown-feature.rs
1 #![warn(unused_features)]
2
3 #![allow(stable_features)]
4 // FIXME(#44232) we should warn that this isn't used.
5 #![feature(rust1)]
6
7 // build-pass (FIXME(62277): could be check-pass?)
8
9
10 fn main() {}