]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-unknown-feature-default.rs
Rollup merge of #106043 - c410-f3r:moar-errors, r=petrochenkov
[rust.git] / src / test / ui / lint / lint-unknown-feature-default.rs
1 // check-pass
2
3 // Tests the default for the unused_features lint
4
5 #![allow(stable_features)]
6 // FIXME(#44232) we should warn that this isn't used.
7 #![feature(rust1)]
8
9 fn main() {}