]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/lint-unknown-feature.rs
Auto merge of #106884 - clubby789:fieldless-enum-debug, r=michaelwoerister
[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() {}