]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-unknown-feature-default.rs
Rollup merge of #87180 - notriddle:notriddle/sidebar-keyboard-mobile, r=GuillaumeGomez
[rust.git] / src / test / ui / lint / lint-unknown-feature-default.rs
1 // Tests the default for the unused_features lint
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() { }