]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/lint-unknown-feature-default.rs
Rollup merge of #106113 - krasimirgg:llvm-16-ext-tyid, r=nikic
[rust.git] / tests / 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() {}